exectos/xtoskrnl/includes/amd64/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

22 lines
542 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/amd64/mmi.h
* DESCRIPTION: XT memory manager routines specific to AMD64 architecture
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_AMD64_MMI_H
#define __XTOSKRNL_AMD64_MMI_H
#include <xtos.h>
/* AMD64 Memory Manager routines forward references */
XTFASTCALL
VOID
MmZeroPages(IN PVOID Address,
IN ULONG Size);
#endif /* __XTOSKRNL_AMD64_MMI_H */