596cc0bdedac66e56e8ddde21cef7ec5eca542e8
[reactos.git] / reactos / include / ndk / mmfuncs.h
1 /*++ NDK Version: 0095
2
3 Copyright (c) Alex Ionescu. All rights reserved.
4
5 Header Name:
6
7 mmfuncs.h
8
9 Abstract:
10
11 Functions definitions for the Memory Manager.
12
13 Author:
14
15 Alex Ionescu (alex.ionescu@reactos.com) 06-Oct-2004
16
17 --*/
18
19 #ifndef _MMFUNCS_H
20 #define _MMFUNCS_H
21
22 //
23 // Dependencies
24 //
25
26 //
27 // Section Functions
28 //
29 NTSTATUS
30 NTAPI
31 MmUnmapViewOfSection(
32 struct _EPROCESS* Process,
33 PVOID BaseAddress
34 );
35
36 #endif