//++-------------------------------------------------------------- // // Function: DllMain // // Synopsis: Sample resource dll // // Arguments: [in] HINSTANCE - module handle // [in] DWORD - reason for call // reserved // // Returns: BOOL // // // Copyright (c) Microsoft Corporation. All rights reserved. // //---------------------------------------------------------------- #include "windows.h" extern "C" BOOL WINAPI DllMain( HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved ) { return (TRUE); } // end of DllMain method #if 0 STDAPI DllCanUnloadNow( VOID ) { return S_OK; } // end of DllCanUnloadNow method #endif