aboutsummaryrefslogtreecommitdiffstats
path: root/fbmngplay/fbmngplay.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-10-07 12:11:23 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-10-07 12:11:23 +0000
commitbba36e2e6b57588a7886330716747da4ff1fb143 (patch)
tree2c9de16264bfa2ae265f077b1c2939a8750105c1 /fbmngplay/fbmngplay.h
parentaec0271e7adacdf340bc23af8ea62d2b81923f0e (diff)
downloadbootsplash-bba36e2e6b57588a7886330716747da4ff1fb143.tar
bootsplash-bba36e2e6b57588a7886330716747da4ff1fb143.tar.gz
bootsplash-bba36e2e6b57588a7886330716747da4ff1fb143.tar.bz2
bootsplash-bba36e2e6b57588a7886330716747da4ff1fb143.tar.xz
bootsplash-bba36e2e6b57588a7886330716747da4ff1fb143.zip
get rid of obsolete code
Diffstat (limited to 'fbmngplay/fbmngplay.h')
-rw-r--r--fbmngplay/fbmngplay.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/fbmngplay/fbmngplay.h b/fbmngplay/fbmngplay.h
deleted file mode 100644
index 08fa48e..0000000
--- a/fbmngplay/fbmngplay.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * fbmngplay - fb console MNG player.
- * (c) 2001-2002 by Stefan Reinauer, <stepan@suse.de>
- *
- * This program is based on mngplay, part of libmng, written and (C) by
- *
- * Ralph Giles <giles@ashlu.bc.ca>
- *
- * This program my be redistributed under the terms of the
- * GNU General Public Licence, version 2, or at your preference,
- * any later version.
- */
-
-#ifndef __FBMNGPLAY_H
-#define __FBMNGPLAY_H
-
-#include <libmng.h>
-
-#define FBMNGPLAY_VERSION "0.5.1"
-
-/* structure for keeping track of our mng stream inside the callbacks */
-typedef struct {
- FILE *file; /* pointer to the file we're decoding */
- char *filename; /* pointer to the file's path/name */
- mng_uint32 delay; /* ticks to wait before resuming decode */
- unsigned char *display; /* pointer to display */
- unsigned char *copybuffer;
- unsigned char *background;
- mng_handle mng; /* mng handle */
- int width, height;
- int fbwidth, fbheight, fbbpp, fbrow;
- int fbx, fby;
- int fbredo, fbredl, fbgreeno, fbgreenl, fbblueo, fbbluel;
- int alpha;
-} mngstuff;
-
-extern volatile int run;
-extern int verbose;
-extern int buffered;
-extern int dynpos;
-extern int waitsignal;
-extern int delta;
-extern int sconly;
-
-#endif