5fe39b1b36d8dded67302597f6a283d6673ee030
[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 antistream;
20    char dummy;
21    char cat;
22    int loglevel;
23    int movex;
24    int movey;
25    int sizex;
26    char hassizex;
27    int sizey;
28    char hassizey;
29    int framerate;
30    float scalex;
31    float scaley;
32 };
33 extern struct config_t config;
34 #endif