Module: wine Branch: refs/heads/master Commit: cc98942bffc6a1307612f95b5ef15edae2a2c12a URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=cc98942bffc6a1307612f95b...
Author: Eric Pouech eric.pouech@wanadoo.fr Date: Fri Feb 17 14:08:54 2006 +0100
dbghelp: Packing for minidump structures is 4 bytes.
---
include/dbghelp.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/dbghelp.h b/include/dbghelp.h index e529e42..09ce14f 100644 --- a/include/dbghelp.h +++ b/include/dbghelp.h @@ -362,6 +362,7 @@ typedef struct _DBGHELP_MODLOAD_DATA * MiniDUMP * *************************/
+#include <pshpack4.h> /* DebugHelp */
#define MINIDUMP_SIGNATURE 0x504D444D /* 'MDMP' */ @@ -722,6 +723,7 @@ BOOL WINAPI MiniDumpWriteDump(HANDLE, DW BOOL WINAPI MiniDumpReadDumpStream(PVOID, ULONG, PMINIDUMP_DIRECTORY*, PVOID*, ULONG*);
+#include <poppack.h>
/************************* * MODULE handling *