mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 14:44:19 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
40 lines
929 B
C
40 lines
929 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/secur32/lsa.c
|
|
* PURPOSE: Client-side LSA functions
|
|
* UPDATE HISTORY:
|
|
* Created 05/08/00
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
#include <precomp.h>
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
HANDLE Secur32Heap;
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, ULONG Reason, PVOID Reserved)
|
|
{
|
|
switch (Reason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
Secur32Heap = RtlCreateHeap(0, NULL, 0, 4096, NULL, NULL);
|
|
if (Secur32Heap == 0)
|
|
{
|
|
return(FALSE);
|
|
}
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
if (!RtlDestroyHeap(Secur32Heap))
|
|
{
|
|
return(FALSE);
|
|
}
|
|
break;
|
|
}
|
|
return(TRUE);
|
|
}
|