SM - Sorry, I forgot silence dbg messages!
[reactos.git] / reactos / ntoskrnl / ex / napi.c
1 /* $Id:$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/ex/napi.c
6 * PURPOSE: Native API support routines
7 *
8 * PROGRAMMERS: David Welch (welch@cwcom.net)
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ntoskrnl.h>
14 #include <ntdll/napi.h>
15 #include <internal/debug.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 };