#pragma region CPL License /* Nuclex Engine Copyright (C) 2002-2008 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #pragma endregion #include "Nuclex/Nuclex.h" #if defined(NUCLEX_WIN32) #define WIN32_LEAN_AND_MEAN #include #endif #if defined(NUCLEX_WIN32) // ####################################################################### // // # DllMain() # // // ####################################################################### // /** Dll main entry point @param hPlugIn Dll instance module handle @param ul_reson_for_call Call reason message @param lpReserved Varying */ BOOL APIENTRY DllMain(HANDLE hPlugIn, DWORD ul_reason_for_call, LPVOID lpReserved) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } #endif