exectos/xtoskrnl/includes/mmi.h
Rafal Kupiec dddd1eb183
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 25s
Rename internal kernel headers to distinguish them easily from XTDK
2023-11-29 20:39:59 +01:00

28 lines
635 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/mmi.h
* DESCRIPTION: Memory manager routines
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_MMI_H
#define __XTOSKRNL_MMI_H
#include <xtos.h>
/* Memory Manager routines forward references */
XTAPI
XTSTATUS
MmAllocateKernelStack(IN PVOID *Stack,
IN BOOLEAN LargeStack,
IN UCHAR SystemNode);
XTAPI
VOID
MmFreeKernelStack(IN PVOID Stack,
IN BOOLEAN LargeStack);
#endif /* __XTOSKRNL_MMI_H */