Set up menu events.

This commit is contained in:
Pietro Gagliardi 2015-04-23 12:15:27 -04:00
parent 3756657921
commit 7618dd6237
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ func NewMenu(name *const char) *Menu;
interface MenuItem {
func Enable(void);
func Disable(void);
func OnClicked(f *func(sender *void, data *void), data *void);
func OnClicked(f *func(sender *MenuItem, window *Window, data *void), data *void);
func Checked(void) int;
func SetChecked(checked int);
};