2006-11-08 11:47:44 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS kernel
|
|
|
|
* PURPOSE: Session stuff
|
|
|
|
* FILE: subsys/win32k/ntuser/session.c
|
|
|
|
* PROGRAMER: Gunnar
|
|
|
|
*/
|
|
|
|
|
2010-04-26 13:58:46 +00:00
|
|
|
#include <win32k.h>
|
2006-11-08 11:47:44 +00:00
|
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
|
|
|
|
PRTL_ATOM_TABLE gAtomTable = NULL;
|
|
|
|
|
|
|
|
/* FUNCTIONS *******************************************************************/
|
|
|
|
|
|
|
|
NTSTATUS FASTCALL
|
|
|
|
InitSessionImpl(VOID)
|
|
|
|
{
|
|
|
|
return RtlCreateAtomTable(37, &gAtomTable);
|
|
|
|
}
|
|
|
|
|