Mikołaj Zalewski : include: Win64 fix in TBBUTTON.
Module: wine Branch: master Commit: f6fecda89672f96fda740b893c07bdd56ef3461d URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f6fecda89672f96fda740b89... Author: Mikołaj Zalewski <mikolaj(a)zalewski.pl> Date: Mon Sep 18 12:05:24 2006 +0200 include: Win64 fix in TBBUTTON. --- include/commctrl.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/commctrl.h b/include/commctrl.h index 87712ae..5bee93f 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -1293,7 +1293,11 @@ typedef struct _TBBUTTON { INT idCommand; BYTE fsState; BYTE fsStyle; +#ifdef _WIN64 + BYTE bReserved[6]; +#else BYTE bReserved[2]; +#endif DWORD_PTR dwData; INT_PTR iString; } TBBUTTON, *PTBBUTTON, *LPTBBUTTON;
participants (1)
-
Alexandre Julliard