Committing more stuff. Added password encryption with SHA, partially
[MenuTunes.git] / ITMTRemote.m
index 3337e55..950e3d6 100755 (executable)
     return nil;
 }
 
+- (NSString *)sharedRemoteName
+{
+    NSString *name = [[NSUserDefaults standardUserDefaults] stringForKey:@"sharedPlayerName"];
+    if (!name)
+        name = @"MenuTunes Shared Player";
+    return name;
+}
+
 - (BOOL)begin
 {
     return NO;
     return nil;
 }
 
+- (ITMTRemotePlayerSource)currentSource
+{
+    return nil;
+}
+
 - (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
 {
     return nil;
     return nil;
 }
 
+- (NSString *)currentSongElapsed
+{
+    return nil;
+}
+
+- (NSImage *)currentSongAlbumArt
+{
+    return nil;
+}
+
 - (float)currentSongRating
 {
     return nil;