mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
40 lines
921 B
C
40 lines
921 B
C
/*
|
|
* 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);
|
|
}
|