exectos/xtoskrnl/includes/kepfuncs.h
belliash b57e79aa7f
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Proceed with architecture specific initialization
2023-01-25 19:37:13 +01:00

32 lines
593 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/kefuncs.h
* DESCRIPTION: Private routine definitions for kernel services
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_KEFUNCS_H
#define __XTOSKRNL_KEFUNCS_H
#include <xtos.h>
XTAPI
VOID
KepArchInitialize(VOID);
XTAPI
VOID
KepStartKernel(VOID);
XTAPI
VOID
KepInitializeStack(IN PKERNEL_INITIALIZATION_BLOCK Parameters);
XTAPI
VOID
KepSwitchBootStack(IN ULONG_PTR Stack);
#endif /* __XTOSKRNL_KEFUNCS_H */