Implement kernel timer initialization routines
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-16 17:56:35 +01:00
parent 91e4176e45
commit b2456fd18a
3 changed files with 71 additions and 0 deletions

View File

@@ -12,9 +12,19 @@
#include <xtdefs.h>
#include <xtstruct.h>
#include <xttypes.h>
#include <ketypes.h>
/* Kernel services routines forward references */
XTAPI
VOID
KeInitializeTimer(OUT PKTIMER Timer);
XTAPI
VOID
KeInitializeTimerEx(OUT PKTIMER Timer,
IN KTIMER_TYPE Type);
XTAPI
VOID
KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters);