mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 10:43:30 +00:00
ntoskrnl.exe: Stub for IoInitializeTimer.
This commit is contained in:
parent
80450122fe
commit
15dd9e8d35
@ -319,6 +319,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.@)
|
||||
*/
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user