summaryrefslogtreecommitdiffstats
path: root/loader/wine/winbase.h
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 18:55:52 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 18:55:52 +0000
commit78c2694b4807df0fcf68c0ce8fbc4b2fc9767527 (patch)
treeac0b42628e502de57ba7c21a7ade3062bf00e300 /loader/wine/winbase.h
parent903cbd2fc75f40d95a15f2781374890758accb43 (diff)
downloadmpv-78c2694b4807df0fcf68c0ce8fbc4b2fc9767527.tar.bz2
mpv-78c2694b4807df0fcf68c0ce8fbc4b2fc9767527.tar.xz
Revert r24424.
Fix is wrong, because 'packed' attribute can be placed before structure definition only when all members have this attribute. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24426 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/wine/winbase.h')
-rw-r--r--loader/wine/winbase.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/loader/wine/winbase.h b/loader/wine/winbase.h
index 1be313c12e..1047bdcd50 100644
--- a/loader/wine/winbase.h
+++ b/loader/wine/winbase.h
@@ -536,14 +536,14 @@ typedef struct tagMEMORYSTATUS
/* Debugging support (DEBUG SYSTEM ONLY) */
-typedef struct WINE_PACKED
+typedef struct
{
UINT16 flags;
- DWORD dwOptions;
- DWORD dwFilter;
- CHAR achAllocModule[8];
- DWORD dwAllocBreak;
- DWORD dwAllocCount;
+ DWORD dwOptions WINE_PACKED;
+ DWORD dwFilter WINE_PACKED;
+ CHAR achAllocModule[8] WINE_PACKED;
+ DWORD dwAllocBreak WINE_PACKED;
+ DWORD dwAllocCount WINE_PACKED;
} WINDEBUGINFO, *LPWINDEBUGINFO;
/* WINDEBUGINFO flags values */