9 lines
188 B
C
9 lines
188 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface RemovableDriveManagerMM : NSObject
|
||
|
|
||
|
-(instancetype) init;
|
||
|
-(void) add_unmount_observer;
|
||
|
-(void) on_device_unmount: (NSNotification*) notification;
|
||
|
|
||
|
@end
|