Commit 15dd9e8d authored by Anders Jonsson's avatar Anders Jonsson Committed by Alexandre Julliard

ntoskrnl.exe: Stub for IoInitializeTimer.

parent 80450122
......@@ -320,6 +320,18 @@ void WINAPI IoInitializeIrp( IRP *irp, USHORT size, CCHAR stack_size )
/***********************************************************************
* IoInitializeTimer (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI IoInitializeTimer(PDEVICE_OBJECT DeviceObject,
PIO_TIMER_ROUTINE TimerRoutine,
PVOID Context)
{
FIXME( "stub: %p, %p, %p\n", DeviceObject, TimerRoutine, Context );
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* IoAllocateIrp (NTOSKRNL.EXE.@)
*/
PIRP WINAPI IoAllocateIrp( CCHAR stack_size, BOOLEAN charge_quota )
......
......@@ -399,7 +399,7 @@
@ stub IoGetTopLevelIrp
@ stdcall IoInitializeIrp(ptr long long)
@ stub IoInitializeRemoveLockEx
@ stub IoInitializeTimer
@ stdcall IoInitializeTimer(ptr ptr ptr)
@ stub IoInvalidateDeviceRelations
@ stub IoInvalidateDeviceState
@ stub IoIsFileOriginRemote
......
......@@ -125,6 +125,7 @@ typedef enum _KWAIT_REASON
} KWAIT_REASON;
typedef struct _IO_TIMER *PIO_TIMER;
typedef struct _IO_TIMER_ROUTINE *PIO_TIMER_ROUTINE;
typedef struct _ETHREAD *PETHREAD;
typedef struct _KTHREAD *PKTHREAD;
typedef struct _EPROCESS *PEPROCESS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment