some bugfixes.
[swftools.git] / src / settings.h
1 /* args.h
2    Settings for swfcombine. This file is deliberately not named "config.h" to
3    avoid conflicts with GNU autoconf.
4
5    Part of the swftools package.
6
7    Copyright (c) 2001 Matthias Kramm <kramm@quiss.org> 
8
9    This file is distributed under the GPL, see file COPYING for details */
10
11 #ifndef __settings_h__
12 #define __settings_h__
13 struct config_t
14 {
15    char overlay;
16    char alloctest;
17    char clip;
18    char stack;
19    char stack1;
20    char antistream;
21    char dummy;
22    char zlib;
23    char cat;
24    char merge;
25    char isframe;
26    int loglevel;
27    int movex;
28    int movey;
29    int sizex;
30    char hassizex;
31    int sizey;
32    char hassizey;
33    int framerate;
34    float scalex;
35    float scaley;
36 };
37 extern struct config_t config;
38 #endif