diff options
Diffstat (limited to 'macosx/InstantHandBrake/DriveDetector.h')
-rw-r--r-- | macosx/InstantHandBrake/DriveDetector.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/macosx/InstantHandBrake/DriveDetector.h b/macosx/InstantHandBrake/DriveDetector.h new file mode 100644 index 000000000..2018309b1 --- /dev/null +++ b/macosx/InstantHandBrake/DriveDetector.h @@ -0,0 +1,23 @@ +/* DriveDetector.h $ + + This file is part of the HandBrake source code. + Homepage: <http://handbrake.m0k.org/>. + It may be used under the terms of the GNU General Public License. */ + +#import <Cocoa/Cocoa.h> + +@interface DriveDetector : NSObject +{ + id fTarget; + SEL fSelector; + + int fCount; + NSMutableDictionary * fDrives; + NSTimer * fTimer; +} + +- (id) initWithCallback: (id) target selector: (SEL) selector; +- (void) run; +- (void) stop; + +@end |