- NDK compatibility fixes for MSDDK. Use NTAPI instead of STDCALL, and use NTSYSAPI...
[reactos.git] / reactos / include / ndk / mmfuncs.h
1 /*
2 * PROJECT: ReactOS Native Headers
3 * FILE: include/ndk/halfuncs.h
4 * PURPOSE: Prototypes for exported HAL Functions not defined in DDK/IFS
5 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
6 * UPDATE HISTORY:
7 * Created 06/10/04
8 */
9 #ifndef _MMFUNCS_H
10 #define _MMFUNCS_H
11
12 /* DEPENDENCIES **************************************************************/
13
14
15 /* PROTOTYPES ****************************************************************/
16 NTSTATUS
17 NTAPI
18 MmUnmapViewOfSection(
19 struct _EPROCESS* Process,
20 PVOID BaseAddress
21 );
22
23 #endif