00001 /* libradar_stp 00002 * <http://www.k9nl.net/radar/> <radar@k9nl.net> 00003 * 00004 * version.h 00005 * 00006 * Copyright (C) 2007 Nicholas J. Luther 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License, 00010 * version 2, as published by the Free Software Foundation. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, write to the Free Software 00019 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00020 * You may contact the author by writing to Nick Luther, 1655 South 00021 * Westhaven Drive, Oshkosh, Wisconsin 54904, USA. 00022 * 00023 */ 00024 00025 #ifndef _LIBRSTP_INC_VERSION_H 00026 #define _LIBRSTP_INC_VERSION_H 00027 00028 // Windows DLL stuff 00029 #if ( defined(WIN32) || defined(WIN_NATIVE) ) && !defined(LIBRADAR_STP_NO_SERVER) 00030 #ifdef LIBRADAR_STP_EXPORTS 00031 #define LIBRADAR_STP_INTERFACE __declspec(dllexport) 00032 #else 00033 #define LIBRADAR_STP_INTERFACE __declspec(dllimport) 00034 #endif 00035 #else 00036 #define LIBRADAR_STP_INTERFACE 00037 #endif 00038 00039 #ifdef __cplusplus 00040 extern "C" { 00041 #endif 00042 LIBRADAR_STP_INTERFACE const char* libradar_stp_version(); 00043 #ifdef __cplusplus 00044 }; 00045 #endif 00046 00047 #endif 00048 00049 // For the benefit of Doxygen:
1.4.7