aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.h
diff options
context:
space:
mode:
authorMax Horn2003-09-11 10:32:15 +0000
committerMax Horn2003-09-11 10:32:15 +0000
commit81f10baa68d36f42f4988b971dff312439906a2f (patch)
treea58d9b322203713d9bc8a0de0531dfcab7c85904 /scumm/resource.h
parenta3bb9f81e0502f66e368b5e58861ffbb5cfdcd41 (diff)
downloadscummvm-rg350-81f10baa68d36f42f4988b971dff312439906a2f.tar.gz
scummvm-rg350-81f10baa68d36f42f4988b971dff312439906a2f.tar.bz2
scummvm-rg350-81f10baa68d36f42f4988b971dff312439906a2f.zip
cleanup
svn-id: r10169
Diffstat (limited to 'scumm/resource.h')
-rw-r--r--scumm/resource.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/scumm/resource.h b/scumm/resource.h
index d89c5266cf..b6ca35dc71 100644
--- a/scumm/resource.h
+++ b/scumm/resource.h
@@ -50,6 +50,15 @@ enum {
};
+#define ARRAY_HDR_SIZE 6
+struct ArrayHeader {
+ int16 dim1_size;
+ int16 type;
+ int16 dim2_size;
+ byte data[1];
+};
+
+
const byte *findResource(uint32 tag, const byte *searchin);
const byte *findResourceSmall(uint32 tag, const byte *searchin);