aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/unpack.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/unpack.h')
-rw-r--r--engines/cine/unpack.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/cine/unpack.h b/engines/cine/unpack.h
index 5677f92248..1fe92c28c3 100644
--- a/engines/cine/unpack.h
+++ b/engines/cine/unpack.h
@@ -30,7 +30,15 @@
namespace Cine {
-int decomp(uint8 *in, uint8 *out, int size);
+struct UnpackCtx {
+ int size, datasize;
+ uint32 crc;
+ uint32 chk;
+ uint8 *dst;
+ const uint8 *src;
+};
+
+bool delphineUnpack(uint8 *dst, const uint8 *src, int len);
} // End of namespace Cine