diff options
Diffstat (limited to 'macosx/DriveDetector.h')
-rw-r--r-- | macosx/DriveDetector.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/macosx/DriveDetector.h b/macosx/DriveDetector.h new file mode 100644 index 000000000..09d589adb --- /dev/null +++ b/macosx/DriveDetector.h @@ -0,0 +1,21 @@ +/* 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; + NSMutableArray * fDrives; + NSTimer * fTimer; +} + +- (id) initWithCallback: (id) target selector: (SEL) selector; + +@end |