aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.h
diff options
context:
space:
mode:
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);