aboutsummaryrefslogtreecommitdiff
path: root/gob/pack.h
diff options
context:
space:
mode:
Diffstat (limited to 'gob/pack.h')
-rw-r--r--gob/pack.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/gob/pack.h b/gob/pack.h
new file mode 100644
index 0000000000..11929834fe
--- /dev/null
+++ b/gob/pack.h
@@ -0,0 +1,18 @@
+/*
+** Gobliiins 1
+** Original game by CoktelVision
+**
+** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
+**
+*/
+#ifndef __UNPACKER_H
+#define __UNPACKER_H
+
+namespace Gob {
+
+int32 asm_unpackData(char *source, char *dest, char *temp);
+int32 unpackData(char *source, char *dest);
+
+} // End of namespace Gob
+
+#endif