Submissions work now. Committing before I break something by adding queues.
[MenuTunes.git] / iTunesRemote.h
index 7dd5145..dbbe821 100755 (executable)
@@ -3,7 +3,7 @@
 //  MenuTunes
 //
 //  Created by Matt L. Judy on Sun Jan 05 2003.
-//  Copyright (c) 2003 NibFile.com. All rights reserved.
+//  Copyright (c) 2003 iThink Software. All rights reserved.
 //
 
 
 #import <Carbon/Carbon.h>
 #import <ITMTRemote/ITMTRemote.h>
 #import <ITFoundation/ITFoundation.h>
+#import <ITMac/ITMac.h>
+
+@class PlaylistNode;
 
 @interface iTunesRemote : ITMTRemote <ITMTRemote>
 {
-    ComponentInstance asComponent; //We will remove this when we are all AEs
-    ProcessSerialNumber iTunesPSN;
+    ProcessSerialNumber savedPSN;
+       float _iTunesVersion;
 }
+- (BOOL)isPlaying;
 - (ProcessSerialNumber)iTunesPSN;
-- (NSString *)runScriptAndReturnResult:(NSString *)script;
+- (NSString*)formatTimeInSeconds:(long)seconds;
+- (NSString*)zeroSixty:(int)seconds;
 @end