Initial revision
[reactos.git] / reactos / ntoskrnl / mm / section.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: ntoskrnl/mm/section.c
5 * PURPOSE: Implements section objects
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 * Created 22/05/98
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <internal/kernel.h>
14 #include <internal/linkage.h>
15 #include <ddk/ntddk.h>
16
17 #include <internal/debug.h>
18
19 /* FUNCTIONS *****************************************************************/
20
21 NTSTATUS ZwOpenSection(PHANDLE SectionHandle,
22 ACCESS_MASK DesiredAccess,
23 POBJECT_ATTRIBUTES ObjectAttributes)
24 {
25 UNIMPLEMENTED;
26 }
27
28 NTSTATUS ZwMapViewOfSection(HANDLE SectionHandle,
29 HANDLE ProcessHandle,
30 PVOID* BaseAddress,
31 ULONG ZeroBits,
32 ULONG CommitSize,
33 PLARGE_INTEGER SectionOffset,
34 PULONG ViewSize,
35 SECTION_INHERIT InheritDisposition,
36 ULONG AllocationType,
37 ULONG Protect)
38 {
39 UNIMPLEMENTED;
40 }
41
42 NTSTATUS ZwUnmapViewOfSection(HANDLE ProcessHandle, PVOID BaseAddress)
43 {
44 UNIMPLEMENTED;
45 }