00001 /* 00002 * WOscLib, an object oriented OSC library. 00003 * Copyright (C) 2005 Uli Clemens Franke, Weiss Engineering LTD, Switzerland. 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 * 00019 * For details see lgpl.txt 00020 * 00021 * Weiss Engineering LTD. 00022 * Florastrass 42 00023 * 8610 Uster 00024 * Switzerland 00025 * 00026 * uli.franke@weiss.ch 00027 */ 00028 00029 /** WOscLib library main source file. 00030 * \file 00031 * 00032 * $Author: cls-nebadje $ ( \ref _UcfWOscLib ) 00033 * $Date: 2006-08-10 13:06:25 $ 00034 * $Revision: 1.2 $ 00035 * 00036 * Copyright (c) Weiss Engineering Ltd 00037 * 00038 */ 00039 00040 #include "WOscLib.h" 00041 00042 00043 #if ( (defined(USE_WOSCLIB_DLL) || defined(BUILD_WOSCLIB_DLL) ) && defined(WIN32) ) 00044 00045 #include "windows.h" 00046 00047 BOOL APIENTRY DllMain( HANDLE hModule, 00048 DWORD ul_reason_for_call, 00049 LPVOID lpReserved 00050 ) 00051 { 00052 switch (ul_reason_for_call) 00053 { 00054 case DLL_PROCESS_ATTACH: 00055 case DLL_THREAD_ATTACH: 00056 case DLL_THREAD_DETACH: 00057 case DLL_PROCESS_DETACH: 00058 break; 00059 } 00060 return TRUE; 00061 } 00062 00063 #endif