diff options
Diffstat (limited to 'alf/alf.h')
| -rw-r--r-- | alf/alf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ extern "C" { typedef struct { BOOL (*initialize)(void * /*closure*/, HWND /*window*/); // return FALSE if you set the focus, TRUE if you want default initial focus void (*destroy)(void * /*closure*/, HWND /*window*/); - BOOL (*close)(void * /*closure*/, HWND /*window*/); + void (*close)(void * /*closure*/, HWND /*window*/); void (*postdestroy)(void * /*closure*/); LRESULT (*message)(void * /*closure*/, HWND, UINT, WPARAM, LPARAM); LRESULT (*command)(void * /*closure*/, HWND /*window*/, WORD /*notificationcode*/, WORD /*sourceid*/, HWND /*control*/); @@ -304,7 +304,7 @@ ALF_DestroyWidget(HWND win, WORD id); // toplevel window HWND -ALF_CreateToplevelWindow(HWND hwndParent, ALFToplevelVTable *vtbl, void *closure); +ALF_CreateToplevelWindow(DWORD exstyle, DWORD style, HWND hwndOwner, ALFToplevelVTable *vtbl, void *closure); void ALF_Toplevel_Resize(HWND win, int cptWidth, int cptHeight); |
