1 |
2401
|
stephane
|
/*
|
2 |
|
|
This source file is part of Scol
|
3 |
|
|
For the latest info, see http://www.scolring.org
|
4 |
|
|
|
5 |
|
|
Copyright (c) 2010 Stephane Bisaro, aka Iri <iri@irizone.net>
|
6 |
|
|
|
7 |
|
|
This program is free software; you can redistribute it and/or modify it under
|
8 |
|
|
the terms of the GNU Lesser General Public License as published by the Free Software
|
9 |
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
10 |
|
|
version.
|
11 |
|
|
|
12 |
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
13 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
14 |
|
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
15 |
|
|
|
16 |
|
|
You should have received a copy of the GNU Lesser General Public License along with
|
17 |
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
18 |
|
|
Place - Suite 330, Boston, MA 02111-1307, USA, or go to
|
19 |
|
|
http://www.gnu.org/copyleft/lesser.txt
|
20 |
|
|
|
21 |
|
|
For others informations, please contact us from http://www.scolring.org/
|
22 |
|
|
*/
|
23 |
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
#ifndef __MAIN_H__
|
28 |
|
|
#define __MAIN_H__
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
#include <stdio.h>
|
32 |
|
|
#include <stdlib.h>
|
33 |
|
|
#include <string.h>
|
34 |
|
|
#include <math.h>
|
35 |
|
|
#include <libgen.h>
|
36 |
|
|
#include <glib.h>
|
37 |
|
|
|
38 |
|
|
#if ((defined __WIN32__) || (defined WIN32))
|
39 |
|
|
#include <windows.h>
|
40 |
|
|
#include "scol_plugin_win.h"
|
41 |
|
|
#else
|
42 |
|
|
#include "scol_plugin_lin.h"
|
43 |
|
|
#endif
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
#include "macros.h"
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
#define bullshit int (__cdecl *)(struct Mmachine *)
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
#define DEFAULT_STRING "Untitle"
|
53 |
|
|
|
54 |
|
|
#endif /* __MAIN_H__ */
|