Add missing forward routines definitions
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
df8de3f85f
commit
3e8bdfe9fe
22
sdk/xtdk/kefuncs.h
Normal file
22
sdk/xtdk/kefuncs.h
Normal file
@ -0,0 +1,22 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: sdk/xtdk/kefuncs.h
|
||||
* DESCRIPTION: XTOS kernel services routines definitions
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#ifndef __XTDK_KEFUNCS_H
|
||||
#define __XTDK_KEFUNCS_H
|
||||
|
||||
#include "xtdefs.h"
|
||||
#include "xtstruct.h"
|
||||
#include "xttypes.h"
|
||||
|
||||
|
||||
/* Kernel services routines forward references */
|
||||
XTAPI
|
||||
VOID
|
||||
KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters);
|
||||
|
||||
#endif /* __XTDK_KEFUNCS_H */
|
@ -49,6 +49,9 @@ RtlInsertTailList(IN OUT PLIST_ENTRY ListHead,
|
||||
BOOLEAN
|
||||
RtlListEmpty(PLIST_ENTRY ListHead);
|
||||
|
||||
BOOLEAN
|
||||
RtlListLoop(IN PLIST_ENTRY ListHead);
|
||||
|
||||
XTAPI
|
||||
VOID
|
||||
RtlMoveMemory(OUT PVOID Destination,
|
||||
|
@ -36,6 +36,7 @@
|
||||
|
||||
/* XT routines */
|
||||
#include "hlfuncs.h"
|
||||
#include "kefuncs.h"
|
||||
#include "rtlfuncs.h"
|
||||
|
||||
/* Architecture specific XT routines*/
|
||||
|
Loading…
Reference in New Issue
Block a user