[WIN32K]
[reactos.git] / reactos / win32ss / user / ntuser / session.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * PURPOSE: Session stuff
5 * FILE: subsys/win32k/ntuser/session.c
6 * PROGRAMER: Gunnar
7 */
8
9 #include <win32k.h>
10
11 /* GLOBALS *******************************************************************/
12
13 PRTL_ATOM_TABLE gAtomTable = NULL;
14
15 /* FUNCTIONS *******************************************************************/
16
17 NTSTATUS FASTCALL
18 InitSessionImpl(VOID)
19 {
20 return RtlCreateAtomTable(37, &gAtomTable);
21 }
22