Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_05 / synfig-core / src / modules / mod_bmp / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file main.cpp
3 **      \brief writeme
4 **
5 **      $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #define SYNFIG_NO_ANGLE
26
27 #ifdef USING_PCH
28 #       include "pch.h"
29 #else
30 #ifdef HAVE_CONFIG_H
31 #       include <config.h>
32 #endif
33
34 #include <synfig/module.h>
35 #include <synfig/layer.h>
36 #include "trgt_bmp.h"
37 #include "mptr_bmp.h"
38
39 #endif
40
41 /* === E N T R Y P O I N T ================================================= */
42
43 MODULE_DESC_BEGIN(mod_bmp)
44         MODULE_NAME("Microsoft BMP File Format Module")
45         MODULE_DESCRIPTION("Provides a Microsoft BMP output target and importer")
46         MODULE_AUTHOR("Robert B. Quattlebaum")
47         MODULE_VERSION("1.0")
48         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
49 MODULE_DESC_END
50
51 MODULE_INVENTORY_BEGIN(mod_bmp)
52         BEGIN_TARGETS
53                 TARGET(bmp)
54         END_TARGETS
55         BEGIN_IMPORTERS
56                 IMPORTER(bmp_mptr)
57         END_IMPORTERS
58 MODULE_INVENTORY_END