aboutsummaryrefslogtreecommitdiff
path: root/graphics/ilbm.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-29 16:34:42 +0000
committerEugene Sandulenko2005-07-29 16:34:42 +0000
commit2d0f26d4ee74fdb4670c4228dd4e971b6de018c6 (patch)
tree9ab6f89f36794d90e40f1fd149b34fddbf8e5241 /graphics/ilbm.h
parent9408ce9b3f433c26d26611a33d704ae6f3bad90a (diff)
downloadscummvm-rg350-2d0f26d4ee74fdb4670c4228dd4e971b6de018c6.tar.gz
scummvm-rg350-2d0f26d4ee74fdb4670c4228dd4e971b6de018c6.tar.bz2
scummvm-rg350-2d0f26d4ee74fdb4670c4228dd4e971b6de018c6.zip
Simple ILBM images reader.
svn-id: r18588
Diffstat (limited to 'graphics/ilbm.h')
-rw-r--r--graphics/ilbm.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/graphics/ilbm.h b/graphics/ilbm.h
new file mode 100644
index 0000000000..89f9279f0f
--- /dev/null
+++ b/graphics/ilbm.h
@@ -0,0 +1,30 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2002-2005 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ */
+
+#ifndef GRAPHICS_ILBM_H
+#define GRAPHICS_ILBM_H
+
+namespace Graphics {
+
+void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors);
+
+} // End of namespace Graphics
+
+#endif