Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
653 B

/*++
Copyright (c) 1990-2000 Microsoft Corporation
All rights reserved
Module Name:
init.c
Abstract:
Holds initialization code for polstore.dll
Author:
Environment:
User Mode
Revision History:
--*/
#include "precomp.h"
HANDLE hInst;
BOOL
InitializeDll(
IN PVOID hmod,
IN DWORD Reason,
IN PCONTEXT pctx OPTIONAL)
{
DBG_UNREFERENCED_PARAMETER(pctx);
switch (Reason) {
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls((HMODULE)hmod);
hInst = hmod;
break;
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}