00001 00009 /* This program is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2 of the License, or (at your option) any later version. 00013 * 00014 * This software is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public 00020 * License along with this software; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 * 00023 * KFJ 2011-01-18 00024 * 00025 */ 00026 00027 #if _WINDOWS && defined Hugin_shared 00028 #ifdef hugin_python_interface_EXPORTS 00029 #define hsi_IMPEX __declspec(dllexport) 00030 #else 00031 #define hsi_IMPEX __declspec(dllimport) 00032 #endif 00033 #else 00034 #define hsi_IMPEX 00035 #endif 00036 00037 namespace hpi 00038 { 00049 hsi_IMPEX extern int callhpi ( const char* plugin_name , 00050 int argc , 00051 ... ) ; 00052 00053 }
1.3.9.1