mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
23 lines
531 B
C
23 lines
531 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* PURPOSE: Session stuff
|
|
* FILE: win32ss/user/ntuser/session.c
|
|
* PROGRAMER: Gunnar
|
|
*/
|
|
|
|
#include <win32k.h>
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
PRTL_ATOM_TABLE gAtomTable = NULL;
|
|
|
|
/* FUNCTIONS *******************************************************************/
|
|
|
|
NTSTATUS FASTCALL
|
|
InitSessionImpl(VOID)
|
|
{
|
|
return RtlCreateAtomTable(37, &gAtomTable);
|
|
}
|
|
|