[mingw-Bugs-1424461]
*include/imagehlp.h: Comment out IN, OUT and OPTIONAL, throughout. *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if _NO_W32_PSEUDO_MODIFIERS. *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL, throughout. *include/rpcnsip.h: Likewise. *include/windef.h: Don't define IN, OUT or OPTIONAL if _NO_W32_PSEUDO_MODIFIERS. *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL, throughout. *include/ddk/cfgmgr32.h: Likewise. *include/ddk/ddkmapi.h: Likewise. *include/ddk/hidclass.h: Likewise. *include/ddk/hidpi.h: Likewise. *include/ddk/kbdmou.h: Likewise. *include/ddk/mcd.h: Likewise. *include/ddk/miniport.h: Likewise. *include/ddk/minitape.h: Likewise. *include/ddk/ndis.h: Likewise. *include/ddk/ndistapi.h: Likewise. *include/ddk/ndiswan.h: Likewise. *include/ddk/ntapi.h: Likewise. *include/ddk/ntdd8042.h: Likewise. *include/ddk/ntddpcm.h: Likewise. *include/ddk/ntifs.h: Likewise. *include/ddk/ntpoapi.h: Likewise. *include/ddk/parallel.h: Likewise. *include/ddk/pfhook.h: Likewise. *include/ddk/scsiwmi.h: Likewise. *include/ddk/smbus.h: Likewise. *include/ddk/srb.h: Likewise. *include/ddk/storport.h: Likewise. *include/ddk/tdikrnl.h: Likewise. *include/ddk/upssvc.h: Likewise. *include/ddk/usbcamdi.h: Likewise. *include/ddk/usbscan.h: Likewise. *include/ddk/video.h: Likewise. *include/ddk/videoagp.h: Likewise. *include/ddk/win2k.h: Likewise. *include/ddk/winddi.h: Likewise. *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL if _NO_W32_PSEUDO_MODIFIERS. Comment out IN, OUT and OPTIONAL, throughout. *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL, throughout. *include/ddk/ws2san.h: Likewise.
This commit is contained in:
@@ -140,33 +140,33 @@ typedef struct _INTERNAL_I8042_START_INFORMATION {
|
||||
|
||||
typedef VOID DDKAPI
|
||||
(*PI8042_ISR_WRITE_PORT)(
|
||||
IN PVOID Context,
|
||||
IN UCHAR Value);
|
||||
/*IN*/ PVOID Context,
|
||||
/*IN*/ UCHAR Value);
|
||||
|
||||
typedef VOID DDKAPI
|
||||
(*PI8042_QUEUE_PACKET)(
|
||||
IN PVOID Context);
|
||||
/*IN*/ PVOID Context);
|
||||
|
||||
typedef NTSTATUS DDKAPI
|
||||
(*PI8042_SYNCH_READ_PORT) (
|
||||
IN PVOID Context,
|
||||
OUT PUCHAR Value,
|
||||
IN BOOLEAN WaitForACK);
|
||||
/*IN*/ PVOID Context,
|
||||
/*OUT*/ PUCHAR Value,
|
||||
/*IN*/ BOOLEAN WaitForACK);
|
||||
|
||||
typedef NTSTATUS DDKAPI
|
||||
(*PI8042_SYNCH_WRITE_PORT)(
|
||||
IN PVOID Context,
|
||||
IN UCHAR Value,
|
||||
IN BOOLEAN WaitForACK);
|
||||
/*IN*/ PVOID Context,
|
||||
/*IN*/ UCHAR Value,
|
||||
/*IN*/ BOOLEAN WaitForACK);
|
||||
|
||||
|
||||
typedef NTSTATUS DDKAPI
|
||||
(*PI8042_KEYBOARD_INITIALIZATION_ROUTINE)(
|
||||
IN PVOID InitializationContext,
|
||||
IN PVOID SynchFuncContext,
|
||||
IN PI8042_SYNCH_READ_PORT ReadPort,
|
||||
IN PI8042_SYNCH_WRITE_PORT WritePort,
|
||||
OUT PBOOLEAN TurnTranslationOn);
|
||||
/*IN*/ PVOID InitializationContext,
|
||||
/*IN*/ PVOID SynchFuncContext,
|
||||
/*IN*/ PI8042_SYNCH_READ_PORT ReadPort,
|
||||
/*IN*/ PI8042_SYNCH_WRITE_PORT WritePort,
|
||||
/*OUT*/ PBOOLEAN TurnTranslationOn);
|
||||
|
||||
typedef BOOLEAN DDKAPI
|
||||
(*PI8042_KEYBOARD_ISR)(
|
||||
@@ -179,12 +179,12 @@ typedef BOOLEAN DDKAPI
|
||||
PKEYBOARD_SCAN_STATE ScanState);
|
||||
|
||||
typedef struct _INTERNAL_I8042_HOOK_KEYBOARD {
|
||||
OUT PVOID Context;
|
||||
OUT PI8042_KEYBOARD_INITIALIZATION_ROUTINE InitializationRoutine;
|
||||
OUT PI8042_KEYBOARD_ISR IsrRoutine;
|
||||
IN PI8042_ISR_WRITE_PORT IsrWritePort;
|
||||
IN PI8042_QUEUE_PACKET QueueKeyboardPacket;
|
||||
IN PVOID CallContext;
|
||||
/*OUT*/ PVOID Context;
|
||||
/*OUT*/ PI8042_KEYBOARD_INITIALIZATION_ROUTINE InitializationRoutine;
|
||||
/*OUT*/ PI8042_KEYBOARD_ISR IsrRoutine;
|
||||
/*IN*/ PI8042_ISR_WRITE_PORT IsrWritePort;
|
||||
/*IN*/ PI8042_QUEUE_PACKET QueueKeyboardPacket;
|
||||
/*IN*/ PVOID CallContext;
|
||||
} INTERNAL_I8042_HOOK_KEYBOARD, *PINTERNAL_I8042_HOOK_KEYBOARD;
|
||||
|
||||
typedef BOOLEAN DDKAPI
|
||||
@@ -199,11 +199,11 @@ typedef BOOLEAN DDKAPI
|
||||
PMOUSE_RESET_SUBSTATE ResetSubState);
|
||||
|
||||
typedef struct _INTERNAL_I8042_HOOK_MOUSE {
|
||||
OUT PVOID Context;
|
||||
OUT PI8042_MOUSE_ISR IsrRoutine;
|
||||
IN PI8042_ISR_WRITE_PORT IsrWritePort;
|
||||
IN PI8042_QUEUE_PACKET QueueMousePacket;
|
||||
IN PVOID CallContext;
|
||||
/*OUT*/ PVOID Context;
|
||||
/*OUT*/ PI8042_MOUSE_ISR IsrRoutine;
|
||||
/*IN*/ PI8042_ISR_WRITE_PORT IsrWritePort;
|
||||
/*IN*/ PI8042_QUEUE_PACKET QueueMousePacket;
|
||||
/*IN*/ PVOID CallContext;
|
||||
} INTERNAL_I8042_HOOK_MOUSE, *PINTERNAL_I8042_HOOK_MOUSE;
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Reference in New Issue
Block a user