update for HEAD-2003091401
[reactos.git] / ntoskrnl / ex / napi.c
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS kernel
4  * FILE:            ntoskrnl/ex/napi.c
5  * PURPOSE:         Native API support routines
6  * PROGRAMMER:      David Welch (welch@cwcom.net)
7  */
8
9 /* INCLUDES *****************************************************************/
10
11 #define NTOS_MODE_KERNEL
12 #include <ntos.h>
13 #include <internal/debug.h>
14
15 #include <ntdll/napi.h>
16
17 /* GLOBALS ******************************************************************/
18
19 SSDT_ENTRY
20 __declspec(dllexport)
21 KeServiceDescriptorTable[SSDT_MAX_ENTRIES] =
22 {
23         { MainSSDT, NULL, NUMBER_OF_SYSCALLS, MainSSPT },
24         { NULL,    NULL,   0,   NULL   },
25         { NULL,    NULL,   0,   NULL   },
26         { NULL,    NULL,   0,   NULL   }
27 };
28
29 SSDT_ENTRY 
30 KeServiceDescriptorTableShadow[SSDT_MAX_ENTRIES] =
31 {
32         { MainSSDT, NULL, NUMBER_OF_SYSCALLS, MainSSPT },
33         { NULL,    NULL,   0,   NULL   },
34         { NULL,    NULL,   0,   NULL   },
35         { NULL,    NULL,   0,   NULL   }
36 };