2019-12-10 09:08:57 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface RemovableDriveManagerMM : NSObject
|
|
|
|
|
|
|
|
-(instancetype) init;
|
|
|
|
-(void) add_unmount_observer;
|
|
|
|
-(void) on_device_unmount: (NSNotification*) notification;
|
2019-12-10 13:10:47 +00:00
|
|
|
-(NSArray*) list_dev;
|
2019-12-17 12:08:17 +00:00
|
|
|
-(void)eject_drive:(NSString *)path;
|
2019-12-10 10:35:39 +00:00
|
|
|
@end
|