Rename xtoskrnl headers
All checks were successful
Builds / ExectOS (i686) (push) Successful in 30s
Builds / ExectOS (amd64) (push) Successful in 27s

This commit is contained in:
2023-10-28 22:35:33 +02:00
parent a2e3e3d9a9
commit 3f520c8e0f
8 changed files with 33 additions and 34 deletions

View File

@@ -0,0 +1,47 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/amd64/ke.h
* DESCRIPTION: Private AMD64 routine definitions for kernel services
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_AMD64_KE_H
#define __XTOSKRNL_AMD64_KE_H
#include <xtos.h>
XTAPI
PKPROCESSOR_BLOCK
KeGetCurrentProcessorBlock(VOID);
XTAPI
PKPROCESSOR_CONTROL_BLOCK
KeGetCurrentProcessorControlBlock(VOID);
XTAPI
PKTHREAD
KeGetCurrentThread(VOID);
XTAPI
VOID
KepArchInitialize(VOID);
XTAPI
VOID
KepInitializeThreadContext(IN PKTHREAD Thread,
IN PKSYSTEM_ROUTINE SystemRoutine,
IN PKSTART_ROUTINE StartRoutine,
IN PVOID StartContext,
IN PCONTEXT ContextRecord);
XTAPI
VOID
KepStartKernel(VOID);
XTAPI
VOID
KepSwitchBootStack(IN ULONG_PTR Stack);
#endif /* __XTOSKRNL_AMD64_KE_H */