mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
fix gcc build
svn path=/trunk/; revision=27437
This commit is contained in:
parent
a9c2017b33
commit
676da8d7b8
2 changed files with 5 additions and 5 deletions
|
@ -29,17 +29,17 @@
|
||||||
|
|
||||||
UNICODE_STRING I8042RegistryPath;
|
UNICODE_STRING I8042RegistryPath;
|
||||||
|
|
||||||
DRIVER_ADD_DEVICE I8042AddDevice;
|
static DRIVER_ADD_DEVICE I8042AddDevice;
|
||||||
static NTSTATUS STDCALL I8042AddDevice(PDRIVER_OBJECT DriverObject,
|
static NTSTATUS STDCALL I8042AddDevice(PDRIVER_OBJECT DriverObject,
|
||||||
PDEVICE_OBJECT Pdo);
|
PDEVICE_OBJECT Pdo);
|
||||||
|
|
||||||
DRIVER_STARTIO I8042StartIo;
|
static DRIVER_STARTIO I8042StartIo;
|
||||||
static VOID STDCALL I8042StartIo(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
static VOID STDCALL I8042StartIo(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
||||||
|
|
||||||
DRIVER_DISPATCH I8042CreateDispatch;
|
static DRIVER_DISPATCH I8042CreateDispatch;
|
||||||
static NTSTATUS STDCALL I8042CreateDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
static NTSTATUS STDCALL I8042CreateDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
||||||
|
|
||||||
DRIVER_DISPATCH I8042InternalDeviceControl;
|
static DRIVER_DISPATCH I8042InternalDeviceControl;
|
||||||
static NTSTATUS STDCALL I8042InternalDeviceControl(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
static NTSTATUS STDCALL I8042InternalDeviceControl(PDEVICE_OBJECT DeviceObject, PIRP Irp);
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
|
@ -39,7 +39,7 @@ static LOCAL_KEYBOARD_INDICATOR_TRANSLATION IndicatorTranslation = { 3, {
|
||||||
{0x45, KEYBOARD_NUM_LOCK_ON},
|
{0x45, KEYBOARD_NUM_LOCK_ON},
|
||||||
{0x46, KEYBOARD_SCROLL_LOCK_ON}}};
|
{0x46, KEYBOARD_SCROLL_LOCK_ON}}};
|
||||||
|
|
||||||
IO_WORKITEM_ROUTINE I8042DebugWorkItem;
|
static IO_WORKITEM_ROUTINE I8042DebugWorkItem;
|
||||||
static VOID STDCALL I8042DebugWorkItem(PDEVICE_OBJECT DeviceObject,
|
static VOID STDCALL I8042DebugWorkItem(PDEVICE_OBJECT DeviceObject,
|
||||||
PVOID Context);
|
PVOID Context);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue