aboutsummaryrefslogtreecommitdiff
path: root/saga/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/image.h')
-rw-r--r--saga/image.h24
1 files changed, 5 insertions, 19 deletions
diff --git a/saga/image.h b/saga/image.h
index 66de2b07f1..c96cd56ce3 100644
--- a/saga/image.h
+++ b/saga/image.h
@@ -20,13 +20,8 @@
* $Header$
*
*/
-/*
- Description:
-
- SAGA Image resource management header file
- Notes:
-*/
+// SAGA Image resource management header file
#ifndef SAGA_IMAGE_H__
#define SAGA_IMAGE_H__
@@ -40,25 +35,16 @@ namespace Saga {
#define SAGA_IMAGE_HEADER_LEN 8
struct R_IMAGE_HEADER {
-
int width;
int height;
int unknown4;
int unknown6;
-
};
-int
-DecodeBGImageRLE(const byte * inbuf,
- size_t inbuf_len, byte * outbuf, size_t outbuf_len);
-
-int FlipImage(byte * img_buf, int columns, int scanlines);
-
-int
-UnbankBGImage(byte * dest_buf,
- const byte * src_buf, int columns, int scanlines);
+int DecodeBGImageRLE(const byte *inbuf, size_t inbuf_len, byte *outbuf, size_t outbuf_len);
+int FlipImage(byte *img_buf, int columns, int scanlines);
+int UnbankBGImage(byte * dest_buf, const byte * src_buf, int columns, int scanlines);
} // End of namespace Saga
-#endif /* R_IMAGE_H__ */
-/* end "r_image.h" */
+#endif