mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 03:09:17 +08:00
19 lines
262 B
Objective-C
19 lines
262 B
Objective-C
|
|
#ifndef MenuItemDelegate_h
|
|
#define MenuItemDelegate_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
extern void processMenuItemClick(unsigned int);
|
|
|
|
@interface MenuItem : NSMenuItem
|
|
|
|
@property unsigned int menuItemID;
|
|
|
|
- (void) handleClick;
|
|
|
|
@end
|
|
|
|
|
|
#endif /* MenuItemDelegate_h */
|