Submissions work now. Committing before I break something by adding queues.
[MenuTunes.git] / iTunesRemote.h
index 9408c63..dbbe821 100755 (executable)
@@ -1,20 +1,27 @@
 //
-//  iTunesRemote.h
+//  iTunesRemoteControl.h
 //  MenuTunes
 //
-//  Created by Joseph Spiros on Sat Sep 06 2003.
-//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
+//  Created by Matt L. Judy on Sun Jan 05 2003.
+//  Copyright (c) 2003 iThink Software. All rights reserved.
 //
 
+
 #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        _currentPSN;
-    iTunesPlayer _player;
-    BOOL _activated;
+@interface iTunesRemote : ITMTRemote <ITMTRemote>
+{
+    ProcessSerialNumber savedPSN;
+       float _iTunesVersion;
 }
+- (BOOL)isPlaying;
 - (ProcessSerialNumber)iTunesPSN;
+- (NSString*)formatTimeInSeconds:(long)seconds;
+- (NSString*)zeroSixty:(int)seconds;
 @end