This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/mac-ui-macgap1-wrapper/MacGap/Classes/Commands/Sound.h

18 lines
401 B
Objective-C

#import <Cocoa/Cocoa.h>
#import "Command.h"
#import "CallbackDelegate.h"
@interface Sound : Command {
}
// pending callbacks for sounds being played, to keep
// ARC from freeing them too early
@property (nonatomic, strong) NSMutableSet *pending;
- (void) play:(NSString*)file onComplete:(WebScriptObject*)callback;
- (void) playSystem:(NSString*)name onComplete:(WebScriptObject*)callback;
@end