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