/*++ Copyright (c) 1996 Microsoft Corporation MODULE NAME init.c ABSTRACT Initialization for the Autodial helper DLL. AUTHOR Anthony Discolo (adiscolo) 22-Apr-1996 REVISION HISTORY --*/ #define UNICODE #define _UNICODE #include #include #include #include #include #include #define DEBUGGLOBALS #include BOOL WINAPI InitAcsHelperDLL( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) /*++ DESCRIPTION Initialize the DLL. All we do right now is to initialize the debug tracing library. ARGUMENTS hinstDLL: fdwReason: lpvReserved: RETURN VALUE Always TRUE. --*/ { switch (fdwReason) { case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(hinstDLL); break; case DLL_PROCESS_DETACH: break; default: break; } return TRUE; }