diff options
Diffstat (limited to 'macosx/DriveDetector.h')
-rw-r--r-- | macosx/DriveDetector.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/macosx/DriveDetector.h b/macosx/DriveDetector.h index 09d589adb..2018309b1 100644 --- a/macosx/DriveDetector.h +++ b/macosx/DriveDetector.h @@ -8,14 +8,16 @@ @interface DriveDetector : NSObject { - id fTarget; - SEL fSelector; + id fTarget; + SEL fSelector; - int fCount; - NSMutableArray * fDrives; - NSTimer * fTimer; + int fCount; + NSMutableDictionary * fDrives; + NSTimer * fTimer; } -- (id) initWithCallback: (id) target selector: (SEL) selector; +- (id) initWithCallback: (id) target selector: (SEL) selector; +- (void) run; +- (void) stop; @end |