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.
|
|
/******************************************************************\
* Microsoft Windows NT * * Copyright(c) Microsoft Corp., 1995 * \******************************************************************/
/*++
Module Name:
DLLINIT.C
Description:
This module contains code for the rasadm.dll initialization. Author:
Janakiram Cherala (RamC) November 29, 1995
Revision History:
--*/
#include <windows.h>
BOOL DllMain( HANDLE hinstDll, DWORD fdwReason, LPVOID lpReserved ) { switch (fdwReason) { case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(hinstDll); break; case DLL_PROCESS_DETACH: break; }
return(TRUE); }
|