/** * PROJECT: ExectOS * COPYRIGHT: See COPYING.md in the top level directory * FILE: sdk/xtdk/kefuncs.h * DESCRIPTION: XTOS kernel services routine definitions * DEVELOPERS: Rafal Kupiec */ #ifndef __XTDK_KEFUNCS_H #define __XTDK_KEFUNCS_H #include #include #include #include /* Kernel services routines forward references */ XTAPI VOID KeInitializeSpinLock(IN PKSPIN_LOCK SpinLock); XTAPI VOID KeInitializeTimer(OUT PKTIMER Timer); XTAPI VOID KeInitializeTimerEx(OUT PKTIMER Timer, IN KTIMER_TYPE Type); XTAPI VOID KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters); #endif /* __XTDK_KEFUNCS_H */