mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:15:59 +00:00
- Fix a thousand warnings
svn path=/trunk/; revision=69185
This commit is contained in:
parent
8ce9283986
commit
e9950e5ef7
1 changed files with 14 additions and 0 deletions
|
@ -470,6 +470,16 @@ typedef struct _EX_PUSH_LOCK
|
||||||
//
|
//
|
||||||
// Executive Pushlock Wait Block
|
// Executive Pushlock Wait Block
|
||||||
//
|
//
|
||||||
|
|
||||||
|
//
|
||||||
|
// The wait block has to be properly aligned
|
||||||
|
// on a non-checked build even if the debug data isn't there.
|
||||||
|
//
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable:4324)
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef __ALIGNED(16) struct _EX_PUSH_LOCK_WAIT_BLOCK
|
typedef __ALIGNED(16) struct _EX_PUSH_LOCK_WAIT_BLOCK
|
||||||
{
|
{
|
||||||
union
|
union
|
||||||
|
@ -490,6 +500,10 @@ typedef __ALIGNED(16) struct _EX_PUSH_LOCK_WAIT_BLOCK
|
||||||
#endif
|
#endif
|
||||||
} EX_PUSH_LOCK_WAIT_BLOCK, *PEX_PUSH_LOCK_WAIT_BLOCK;
|
} EX_PUSH_LOCK_WAIT_BLOCK, *PEX_PUSH_LOCK_WAIT_BLOCK;
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// Callback Object
|
// Callback Object
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue