Adding methods for Equalizer enabled nonsense to the iTunes remote,
authorJoseph Spiros <joseph.spiros@ithinksw.com>
Thu, 13 Mar 2003 18:22:47 +0000 (18:22 +0000)
committerJoseph Spiros <joseph.spiros@ithinksw.com>
Thu, 13 Mar 2003 18:22:47 +0000 (18:22 +0000)
though they don't actually "work", in that they always return NO. Alex, I
need you to put support in there.

iTunesRemote.m

index e8b3098..8956f47 100755 (executable)
@@ -1,4 +1,4 @@
-#import "iTunesRemote.h"
+op#import "iTunesRemote.h"
 
 @implementation iTunesRemote
 
     return YES;
 }
 
+- (BOOL)equalizerEnabled
+{
+    return NO;
+}
+
+- (BOOL)setEqualizerEnabled:(BOOL)enabled
+{
+    return NO;
+}
+
 - (float)volume
 {
     long vol = [[ITAppleEventCenter sharedCenter] sendAEWithRequestedKeyForNumber:@"pVol" eventClass:@"core" eventID:@"getd" appPSN:iTunesPSN];