mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
22 lines
532 B
C
22 lines
532 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* PURPOSE: Session stuff
|
|
* FILE: subsys/win32k/ntuser/session.c
|
|
* PROGRAMER: Gunnar
|
|
*/
|
|
|
|
#include <win32k.h>
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
PRTL_ATOM_TABLE gAtomTable = NULL;
|
|
|
|
/* FUNCTIONS *******************************************************************/
|
|
|
|
NTSTATUS FASTCALL
|
|
InitSessionImpl(VOID)
|
|
{
|
|
return RtlCreateAtomTable(37, &gAtomTable);
|
|
}
|
|
|