git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added a browse Artist menu. The playlist creation and everything is
[MenuTunes.git]
/
ITMTRemote.m
diff --git
a/ITMTRemote.m
b/ITMTRemote.m
index
bafb49e
..
3b4a828
100755
(executable)
--- a/
ITMTRemote.m
+++ b/
ITMTRemote.m
@@
-79,11
+79,26
@@
return nil;
}
return nil;
}
+- (NSArray *)artists
+{
+ return nil;
+}
+
+- (NSArray *)albums
+{
+ return nil;
+}
+
- (int)numberOfSources
{
return nil;
}
- (int)numberOfSources
{
return nil;
}
+- (int)numberOfSongsInPlaylistAtIndex:(int)index
+{
+ return nil;
+}
+
- (ITMTRemotePlayerSource)currentSource
{
return nil;
- (ITMTRemotePlayerSource)currentSource
{
return nil;
@@
-289,4
+304,9
@@
return NO;
}
return NO;
}
+- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type
+{
+ return NO;
+}
+
@end
@end