git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Lots of code to keep MT from being bad when iTunes locks. Fixed leak in
[MenuTunes.git]
/
ITMTRemote.m
diff --git
a/ITMTRemote.m
b/ITMTRemote.m
index
50fcb21
..
3b4a828
100755
(executable)
--- a/
ITMTRemote.m
+++ b/
ITMTRemote.m
@@
-79,12
+79,37
@@
return nil;
}
return nil;
}
+- (NSArray *)artists
+{
+ return nil;
+}
+
+- (NSArray *)albums
+{
+ return nil;
+}
+
+- (int)numberOfSources
+{
+ return nil;
+}
+
- (int)numberOfSongsInPlaylistAtIndex:(int)index
{
return nil;
}
- (int)numberOfSongsInPlaylistAtIndex:(int)index
{
return nil;
}
-- (ITMTRemotePlayerPlaylistClass)classOfPlaylistAtIndex:(int)index
+- (ITMTRemotePlayerSource)currentSource
+{
+ return nil;
+}
+
+- (int)currentSourceIndex
+{
+ return nil;
+}
+
+- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
{
return nil;
}
{
return nil;
}
@@
-99,6
+124,21
@@
return nil;
}
return nil;
}
+- (int)currentAlbumTrackCount
+{
+ return nil;
+}
+
+- (int)currentSongTrack
+{
+ return nil;
+}
+
+- (NSString *)playerStateUniqueIdentifier
+{
+ return nil;
+}
+
- (int)currentSongIndex
{
return nil;
- (int)currentSongIndex
{
return nil;
@@
-114,6
+154,11
@@
return nil;
}
return nil;
}
+- (NSString *)currentSongComposer
+{
+ return nil;
+}
+
- (NSString *)currentSongAlbum
{
return nil;
- (NSString *)currentSongAlbum
{
return nil;
@@
-134,6
+179,21
@@
return nil;
}
return nil;
}
+- (NSString *)currentSongElapsed
+{
+ return nil;
+}
+
+- (NSImage *)currentSongAlbumArt
+{
+ return nil;
+}
+
+- (int)currentSongPlayCount
+{
+ return nil;
+}
+
- (float)currentSongRating
{
return nil;
- (float)currentSongRating
{
return nil;
@@
-229,6
+289,11
@@
return NO;
}
return NO;
}
+- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2
+{
+ return NO;
+}
+
- (BOOL)switchToSongAtIndex:(int)index
{
return NO;
- (BOOL)switchToSongAtIndex:(int)index
{
return NO;
@@
-239,4
+304,9
@@
return NO;
}
return NO;
}
+- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type
+{
+ return NO;
+}
+
@end
@end