include: Remove uneeded __RPC_FAR references.
This commit is contained in:
parent
9139fd140c
commit
adf52cda04
|
@ -134,9 +134,9 @@ typedef struct IDirectMusicContainer *LPDIRECTMUSICCONTAINER;
|
|||
typedef struct IDirectMusicContainer IDirectMusicContainer8, *LPDIRECTMUSICCONTAINER8;
|
||||
|
||||
/* RPC declarations */
|
||||
typedef struct IDirectMusicBand __RPC_FAR *LPDMUS_BAND;
|
||||
typedef struct IDirectMusicLoader __RPC_FAR *LPDMUS_LOADER;
|
||||
typedef struct IDirectMusicObject __RPC_FAR *LPDMUS_OBJECT;
|
||||
typedef struct IDirectMusicBand *LPDMUS_BAND;
|
||||
typedef struct IDirectMusicLoader *LPDMUS_LOADER;
|
||||
typedef struct IDirectMusicObject *LPDMUS_OBJECT;
|
||||
|
||||
/* GUIDs - all types loader */
|
||||
DEFINE_GUID(GUID_DirectMusicAllTypes, 0xd2ac2893,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
|
||||
|
|
|
@ -149,22 +149,22 @@ typedef struct _RPC_POLICY
|
|||
|
||||
typedef struct _SEC_WINNT_AUTH_IDENTITY_W
|
||||
{
|
||||
unsigned short __RPC_FAR* User;
|
||||
unsigned short* User;
|
||||
unsigned long UserLength;
|
||||
unsigned short __RPC_FAR* Domain;
|
||||
unsigned short* Domain;
|
||||
unsigned long DomainLength;
|
||||
unsigned short __RPC_FAR* Password;
|
||||
unsigned short* Password;
|
||||
unsigned long PasswordLength;
|
||||
unsigned long Flags;
|
||||
} SEC_WINNT_AUTH_IDENTITY_W, *PSEC_WINNT_AUTH_IDENTITY_W;
|
||||
|
||||
typedef struct _SEC_WINNT_AUTH_IDENTITY_A
|
||||
{
|
||||
unsigned char __RPC_FAR* User;
|
||||
unsigned char* User;
|
||||
unsigned long UserLength;
|
||||
unsigned char __RPC_FAR* Domain;
|
||||
unsigned char* Domain;
|
||||
unsigned long DomainLength;
|
||||
unsigned char __RPC_FAR* Password;
|
||||
unsigned char* Password;
|
||||
unsigned long PasswordLength;
|
||||
unsigned long Flags;
|
||||
} SEC_WINNT_AUTH_IDENTITY_A, *PSEC_WINNT_AUTH_IDENTITY_A;
|
||||
|
|
Loading…
Reference in New Issue