summaryrefslogtreecommitdiffstats
path: root/macosx/DriveDetector.h
diff options
context:
space:
mode:
authortiter <[email protected]>2006-04-19 20:25:37 +0000
committertiter <[email protected]>2006-04-19 20:25:37 +0000
commit1d4535870a4212535c56f79f784c30a018a3e646 (patch)
tree750fb15df400421474e393563ce2e4edda9c9b96 /macosx/DriveDetector.h
parent72738ac78c91e391c1e03714f7142d325116d5a6 (diff)
Show the name of the DVD instead of /dev/rdiskX
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@64 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/DriveDetector.h')
-rw-r--r--macosx/DriveDetector.h14
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