mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-16 07:35:51 +01:00
17 lines
261 B
Objective-C
17 lines
261 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 */
|