00001 /* 00002 This source file is part of Scol 00003 For the latest info, see http://www.scolring.org 00004 00005 Copyright (c) 2010 Stephane Bisaro, aka Iri <iri@irizone.net> 00006 00007 This program is free software; you can redistribute it and/or modify it under 00008 the terms of the GNU Lesser General Public License as published by the Free Software 00009 Foundation; either version 2 of the License, or (at your option) any later 00010 version. 00011 00012 This program is distributed in the hope that it will be useful, but WITHOUT 00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00014 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00015 00016 You should have received a copy of the GNU Lesser General Public License along with 00017 this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00018 Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00019 http://www.gnu.org/copyleft/lesser.txt 00020 00021 For others informations, please contact us from http://www.scolring.org/ 00022 */ 00023 00024 00025 00026 00027 #ifndef __MAIN_H__ 00028 #define __MAIN_H__ 00029 00030 00031 #include <stdio.h> 00032 #include <stdlib.h> 00033 #include <string.h> 00034 #include <math.h> 00035 #include <libgen.h> 00036 #include <glib.h> 00037 00038 #if ((defined __WIN32__) || (defined WIN32)) 00039 #include <windows.h> 00040 #include "scol_plugin_win.h" 00041 #else 00042 #include "scol_plugin_lin.h" 00043 #endif 00044 00045 00046 #include "macros.h" 00047 00048 00049 #define bullshit int (__cdecl *)(struct Mmachine *) 00050 00051 00052 #define DEFAULT_STRING "Untitle" 00053 00054 #endif /* __MAIN_H__ */