939584bf89882cf00b5f5bb4f98e96fa7e3032be
[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 #include <ntos.h>
12 #include <internal/debug.h>
13
14 /* GLOBALS ******************************************************************/
15
16 #include <ddk/service.h>
17 #include <ntdll/napi.h>
18
19 /* GLOBALS *****************************************************************/
20
21 KE_SERVICE_DESCRIPTOR_TABLE_ENTRY
22 __declspec(dllexport)
23 KeServiceDescriptorTable[SSDT_MAX_ENTRIES] =
24 {
25         { MainSSDT, NULL, NUMBER_OF_SYSCALLS, MainSSPT },
26         { NULL,    NULL,   0,   NULL   },
27         { NULL,    NULL,   0,   NULL   },
28         { NULL,    NULL,   0,   NULL   }
29 };
30
31 KE_SERVICE_DESCRIPTOR_TABLE_ENTRY 
32 KeServiceDescriptorTableShadow[SSDT_MAX_ENTRIES] =
33 {
34         { MainSSDT, NULL, NUMBER_OF_SYSCALLS, MainSSPT },
35         { NULL,    NULL,   0,   NULL   },
36         { NULL,    NULL,   0,   NULL   },
37         { NULL,    NULL,   0,   NULL   }
38 };