diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 18:58:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 18:58:20 (GMT) |
commit | 524f59a75aab742a5ce54b6497bec8e3bda8dced (patch) | |
tree | 7d066c5e714c648fcafc6c38bd2f537098ef36ab /generic/tkIntPlatDecls.h | |
parent | 83042abf39211173167e01577444d8b0df973678 (diff) | |
download | tk-524f59a75aab742a5ce54b6497bec8e3bda8dced.zip tk-524f59a75aab742a5ce54b6497bec8e3bda8dced.tar.gz tk-524f59a75aab742a5ce54b6497bec8e3bda8dced.tar.bz2 |
fix some visual studio warnings, eliminate some ANSI_ARGS
Diffstat (limited to 'generic/tkIntPlatDecls.h')
-rw-r--r-- | generic/tkIntPlatDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkIntPlatDecls.h b/generic/tkIntPlatDecls.h index dd1e899..a2006d9 100644 --- a/generic/tkIntPlatDecls.h +++ b/generic/tkIntPlatDecls.h @@ -488,7 +488,7 @@ typedef struct TkIntPlatStubs { int (*tkWinGetPlatformId) _ANSI_ARGS_((void)); /* 33 */ void (*tkWinSetHINSTANCE) _ANSI_ARGS_((HINSTANCE hInstance)); /* 34 */ int (*tkWinGetPlatformTheme) _ANSI_ARGS_((void)); /* 35 */ - LRESULT __stdcall (*tkWinChildProc) _ANSI_ARGS_((HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)); /* 36 */ + LRESULT (__stdcall *tkWinChildProc) _ANSI_ARGS_((HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)); /* 36 */ void (*tkCreateXEventSource) _ANSI_ARGS_((void)); /* 37 */ void (*tkFreeWindowId) _ANSI_ARGS_((TkDisplay *dispPtr, Window w)); /* 38 */ void (*tkInitXId) _ANSI_ARGS_((TkDisplay *dispPtr)); /* 39 */ |