fix gcc build

svn path=/trunk/; revision=27437
This commit is contained in:
Christoph von Wittich 2007-07-06 21:36:43 +00:00
parent a9c2017b33
commit 676da8d7b8
2 changed files with 5 additions and 5 deletions

View file

@ -29,17 +29,17 @@
UNICODE_STRING I8042RegistryPath;
DRIVER_ADD_DEVICE I8042AddDevice;
static DRIVER_ADD_DEVICE I8042AddDevice;
static NTSTATUS STDCALL I8042AddDevice(PDRIVER_OBJECT DriverObject,
PDEVICE_OBJECT Pdo);
DRIVER_STARTIO I8042StartIo;
static DRIVER_STARTIO I8042StartIo;
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);
DRIVER_DISPATCH I8042InternalDeviceControl;
static DRIVER_DISPATCH I8042InternalDeviceControl;
static NTSTATUS STDCALL I8042InternalDeviceControl(PDEVICE_OBJECT DeviceObject, PIRP Irp);
/* FUNCTIONS *****************************************************************/

View file

@ -39,7 +39,7 @@ static LOCAL_KEYBOARD_INDICATOR_TRANSLATION IndicatorTranslation = { 3, {
{0x45, KEYBOARD_NUM_LOCK_ON},
{0x46, KEYBOARD_SCROLL_LOCK_ON}}};
IO_WORKITEM_ROUTINE I8042DebugWorkItem;
static IO_WORKITEM_ROUTINE I8042DebugWorkItem;
static VOID STDCALL I8042DebugWorkItem(PDEVICE_OBJECT DeviceObject,
PVOID Context);