Source code of Windows XP (NT5)
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.
|
|
/*
File libmain.c
Contains lib main for mprapi.dll
Paul Mayfield, 5/7/98 */
#include <windows.h>
#include "sdolib.h"
extern CRITICAL_SECTION DsrLock; extern CRITICAL_SECTION CfgLock;
//
// Standard Win32 lib main function gets called
// as processes and threads attach and detach.
//
// Returns TRUE if successfull, false otherwise
//
BOOL MprLibMain( IN HANDLE hinstDll, IN DWORD fdwReason, IN LPVOID lpReserved) { switch (fdwReason) { case DLL_PROCESS_ATTACH: try { InitializeCriticalSection(&DsrLock); InitializeCriticalSection(&CfgLock); } except (EXCEPTION_EXECUTE_HANDLER) { return FALSE; } DisableThreadLibraryCalls(hinstDll); break;
case DLL_PROCESS_DETACH: DeleteCriticalSection(&DsrLock); DeleteCriticalSection(&CfgLock); break; }
return TRUE; }
|