mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-02-01 00:18:44 +03:00
11 lines
247 B
C
11 lines
247 B
C
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
@interface RemovableDriveManagerMM : NSObject
|
||
|
|
|
||
|
|
-(instancetype) init;
|
||
|
|
-(void) add_unmount_observer;
|
||
|
|
-(void) on_device_unmount: (NSNotification*) notification;
|
||
|
|
-(NSArray*) list_dev;
|
||
|
|
-(void)eject_drive:(NSString *)path;
|
||
|
|
@end
|