Module: wine Branch: master Commit: 424caea9674ede78cd7a9adcbed7b154bd358015 URL: http://source.winehq.org/git/wine.git/?a=commit;h=424caea9674ede78cd7a9adcbe...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Sat Dec 13 23:06:48 2008 +0100
includes: Fix packing for commdlg in Win64.
---
include/commdlg.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/commdlg.h b/include/commdlg.h index 914e4c8..34e6b22 100644 --- a/include/commdlg.h +++ b/include/commdlg.h @@ -26,7 +26,9 @@ extern "C" { #endif
#include <prsht.h> +#ifndef _WIN64 #include <pshpack1.h> +#endif
#ifndef SNDMSG #ifdef __cplusplus @@ -770,7 +772,9 @@ BOOL WINAPI ChooseFontW(LPCHOOSEFONTW); void COMDLG32_SetCommDlgExtendedError(DWORD err);
+#ifndef _WIN64 #include <poppack.h> +#endif
#ifdef __cplusplus }