More #pragma fixes (idea Ove Kaaven, mistakes are mine).
This commit is contained in:
parent
c049e81683
commit
8de3ba8f6e
|
@ -115,4 +115,6 @@ struct ASPI_DEVICE_INFO {
|
|||
typedef struct ASPI_DEVICE_INFO ASPI_DEVICE_INFO;
|
||||
static ASPI_DEVICE_INFO *ASPI_open_devices = NULL;
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -2837,8 +2837,6 @@ BOOL16 WINAPI DriverCallback16(DWORD dwCallBack, UINT16 uFlags, HANDLE16 hDev,
|
|||
WORD wMsg, DWORD dwUser, DWORD dwParam1, DWORD dwParam2);
|
||||
DWORD WINAPI auxMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
||||
DWORD dwParam1, DWORD dwParam2);
|
||||
|
||||
#pragma pack(4)
|
||||
DWORD WINAPI mixMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
||||
DWORD dwParam1, DWORD dwParam2);
|
||||
DWORD WINAPI midMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
||||
|
|
|
@ -97,4 +97,6 @@ union SRB16 {
|
|||
|
||||
typedef union SRB16 SRB16;
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
#include "winnt.h"
|
||||
|
||||
#pragma pack(1)
|
||||
|
||||
#define CTL_CODE( DeviceType, Function, Method, Access ) ( \
|
||||
(DWORD)((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) \
|
||||
)
|
||||
|
@ -248,7 +246,7 @@ typedef struct tagMID {
|
|||
BYTE midVolLabel[11];
|
||||
BYTE midFileSysType[8];
|
||||
} MID, *PMID;
|
||||
#pragma pack()
|
||||
#pragma pack(4)
|
||||
|
||||
/* End VWIN32 information */
|
||||
|
||||
|
|
|
@ -378,7 +378,7 @@ typedef enum _TOKEN_INFORMATION_CLASS {
|
|||
#ifndef _SECURITY_DEFINED
|
||||
#define _SECURITY_DEFINED
|
||||
|
||||
#pragma pack (1)
|
||||
#pragma pack(1)
|
||||
|
||||
typedef struct {
|
||||
BYTE Value[6];
|
||||
|
@ -784,4 +784,6 @@ typedef enum tagSID_NAME_USE {
|
|||
#define DACL_SECURITY_INFORMATION 0x00000004
|
||||
#define SACL_SECURITY_INFORMATION 0x00000008
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
#endif /* __WINE_WINNT_H */
|
||||
|
|
|
@ -93,4 +93,6 @@ union SRB {
|
|||
|
||||
typedef union SRB SRB;
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -32,4 +32,4 @@ typedef struct
|
|||
|
||||
#define APMHEADER_KEY 0x9AC6CDD7l
|
||||
|
||||
|
||||
#pragma pack(4)
|
||||
|
|
Loading…
Reference in New Issue