exectos/xtoskrnl/includes/i686/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
536 B
C

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