summaryrefslogtreecommitdiffstats
path: root/loader/wine/winbase.h
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 18:07:25 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 18:07:25 +0000
commit169a837b180004c0a8aee0ed365c1fb06f4e1a48 (patch)
treedf7b57867e890719042975af128f3d39677761d5 /loader/wine/winbase.h
parentdcc2e2e5ea5a3a8b055d43f859a0b6bfdcbfe31a (diff)
downloadmpv-169a837b180004c0a8aee0ed365c1fb06f4e1a48.tar.bz2
mpv-169a837b180004c0a8aee0ed365c1fb06f4e1a48.tar.xz
Fix for a lot of
"'packed' attribute ignored for field of type 'BYTE'" warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24424 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 1047bdcd50..1be313c12e 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
+typedef struct WINE_PACKED
{
UINT16 flags;
- DWORD dwOptions WINE_PACKED;
- DWORD dwFilter WINE_PACKED;
- CHAR achAllocModule[8] WINE_PACKED;
- DWORD dwAllocBreak WINE_PACKED;
- DWORD dwAllocCount WINE_PACKED;
+ DWORD dwOptions;
+ DWORD dwFilter;
+ CHAR achAllocModule[8];
+ DWORD dwAllocBreak;
+ DWORD dwAllocCount;
} WINDEBUGINFO, *LPWINDEBUGINFO;
/* WINDEBUGINFO flags values */