00001 00009 /* This file is part of tclSadie. 00010 00011 tclSadie is free software; you can redistribute it and/or modify it 00012 under the terms of the GNU General Public License as published by 00013 the Free Software Foundation; either version 2 of the License, or 00014 (at your option) any later version. 00015 00016 tclSadie is distributed in the hope that it will be useful, but 00017 WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00019 General Public License for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with tclSadie; if not, write to the Free Software Foundation, 00023 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ 00024 00025 #ifndef PROJECT_UTILITIES_H 00026 00027 #define PROJECT_UTILITIES_H 1 00028 00029 #ifdef __cplusplus 00030 00031 # define BEGIN_C_DECLARATIONS extern "C" { 00032 00033 # define END_C_DECLARATIONS } 00034 #else 00035 00036 # define BEGIN_C_DECLARATIONS 00037 00038 # define END_C_DECLARATIONS 00039 #endif 00040 00041 #endif