00001 /* 00002 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab 00003 * Copyright (C) 2007-2008 - INRIA - Allan CORNET <allan.cornet@inria.fr> 00004 * 00005 * This file must be used under the terms of the CeCILL. 00006 * This source file is licensed as described in the file COPYING, which 00007 * you should have received as part of this distribution. The terms 00008 * are also available at 00009 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt 00010 * 00011 */ 00012 00013 #include <windows.h> 00014 /*--------------------------------------------------------------------------*/ 00015 #pragma comment(lib,"../../../../bin/libintl.lib") 00016 #pragma comment(lib,"../../../../bin/scioutput_stream.lib") 00017 /*--------------------------------------------------------------------------*/ 00018 int WINAPI DllMain (HINSTANCE hInstance , DWORD reason, PVOID pvReserved) 00019 { 00020 switch (reason) 00021 { 00022 case DLL_PROCESS_ATTACH: 00023 break; 00024 case DLL_PROCESS_DETACH: 00025 break; 00026 case DLL_THREAD_ATTACH: 00027 break; 00028 case DLL_THREAD_DETACH: 00029 break; 00030 } 00031 return 1; 00032 } 00033 /*--------------------------------------------------------------------------*/ 00034
1.5.5