Add missing headers containing forward references of MM routines
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-20 22:22:32 +01:00
父節點 d427ca20fb
當前提交 c8428241dd
共有 4 個文件被更改,包括 68 次插入0 次删除

20
sdk/xtdk/amd64/mmfuncs.h Normal file
查看文件

@@ -0,0 +1,20 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/amd64/mmfuncs.h
* DESCRIPTION: Memory manager routines specific to AMD64 architecture
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_AMD64_MMFUNCS_H
#define __XTDK_AMD64_MMFUNCS_H
#include <xtbase.h>
XTFASTCALL
VOID
MmZeroPages(IN PVOID Address,
IN ULONG Size);
#endif /* __XTDK_AMD64_MMFUNCS_H */