Licensing MenuTunes under the GNU General Public License version 2.
[MenuTunes.git] / iTunesRemote.h
index 384c24c..ef4e75b 100755 (executable)
@@ -1,22 +1,26 @@
-//
-//  iTunesRemoteControl.h
-//  MenuTunes
-//
-//  Created by Matt L. Judy on Sun Jan 05 2003.
-//  Copyright (c) 2003 NibFile.com. All rights reserved.
-//
-
+/*
+ *     MenuTunes
+ *     iTunesRemote.h
+ *
+ *     Copyright (c) 2003 iThink Software
+ *
+ */
 
 #import <Cocoa/Cocoa.h>
 #import <Carbon/Carbon.h>
 #import <ITMTRemote/ITMTRemote.h>
 #import <ITFoundation/ITFoundation.h>
+#import <ITMac/ITMac.h>
+
+@class PlaylistNode;
 
 @interface iTunesRemote : ITMTRemote <ITMTRemote>
 {
-    ProcessSerialNumber iTunesPSN;
+    ProcessSerialNumber savedPSN;
+       float _iTunesVersion;
 }
+- (BOOL)isPlaying;
 - (ProcessSerialNumber)iTunesPSN;
-- (void)applicationLaunched:(NSNotification *)note;
-- (void)applicationTerminated:(NSNotification *)note;
+- (NSString*)formatTimeInSeconds:(long)seconds;
+- (NSString*)zeroSixty:(int)seconds;
 @end