+++ /dev/null
-/* args.h
- Settings for swfcombine. This file is deliberately not named "config.h" to
- avoid conflicts with GNU autoconf.
-
- Part of the swftools package.
-
- Copyright (c) 2001 Matthias Kramm <kramm@quiss.org>
-
- This file is distributed under the GPL, see file COPYING for details */
-
-#ifndef __settings_h__
-#define __settings_h__
-struct config_t
-{
- char overlay;
- char alloctest;
- char clip;
- char stack;
- char stack1;
- char antistream;
- char dummy;
- char zlib;
- char cat;
- char merge;
- char isframe;
- int loglevel;
- int movex;
- int movey;
- int sizex;
- char hassizex;
- int sizey;
- char hassizey;
- int framerate;
- float scalex;
- float scaley;
-};
-extern struct config_t config;
-#endif
+++ /dev/null
-/* types.h
- Some typedefs to make life simpler. If this file causes you problems, you might
- try to remove all #include "types.h" and live with what configure does define.
-
- Part of the swftools package.
-
- Copyright (c) 2001 Matthias Kramm <kramm@quiss.org>
-
- This file is distributed under the GPL, see file COPYING for details */
-
-#ifndef __types_h__
-#define __types_h__
-typedef long unsigned w32;
-typedef short unsigned w16;
-typedef unsigned char u8;
-typedef signed char s8;
-typedef short unsigned u16;
-typedef short signed s16;
-typedef long unsigned u32;
-typedef long signed s32;
-typedef long long unsigned u64;
-typedef long long signed s64;
-typedef unsigned char byte;
-typedef unsigned char uchar;
-typedef signed char sbyte;
-typedef unsigned short int word;
-typedef signed short int sword;
-typedef unsigned long int dword;
-typedef signed long int sdword;
-typedef signed short int integer;
-typedef signed long int longint;
-typedef long double extended;
-#endif // __types_h__