Cleanup MM subsystem headers

This commit is contained in:
2023-10-29 00:52:05 +02:00
parent cc3e9eb5e6
commit 798e4c1d22
7 changed files with 68 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/i686/mm.h
* DESCRIPTION: XT memory manager routines specific to i686 architecture
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_I686_MM_H
#define __XTOSKRNL_I686_MM_H
#include <xtos.h>
XTFASTCALL
VOID
MmZeroPages(IN PVOID Address,
IN ULONG Size);
#endif /* __XTOSKRNL_I686_MM_H */