2025-04-27 07:49:33 -04:00

56 lines
1000 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/******************************************************************\
* 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 RasAdminDLLInit( HINSTANCE, DWORD, LPVOID );
HINSTANCE ThisDLLHandle;
BOOL
RasAdminDLLInit(
IN HINSTANCE DLLHandle,
IN DWORD Reason,
IN LPVOID ReservedAndUnused
)
{
ReservedAndUnused;
switch(Reason) {
case DLL_PROCESS_ATTACH:
ThisDLLHandle = DLLHandle;
break;
case DLL_PROCESS_DETACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
}
return(TRUE);
}