now incorporated in swfcombine.c.
authorkramm <kramm>
Tue, 4 Jun 2002 17:03:30 +0000 (17:03 +0000)
committerkramm <kramm>
Tue, 4 Jun 2002 17:03:30 +0000 (17:03 +0000)
src/settings.h [deleted file]
src/types.h [deleted file]

diff --git a/src/settings.h b/src/settings.h
deleted file mode 100644 (file)
index 05d1850..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* 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
diff --git a/src/types.h b/src/types.h
deleted file mode 100644 (file)
index a5b540d..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* 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__