Add decompression support using the implode library
[installshield_z.git] / posix.h
diff --git a/posix.h b/posix.h
new file mode 100755 (executable)
index 0000000..1939148
--- /dev/null
+++ b/posix.h
@@ -0,0 +1,30 @@
+/************************************************************************/
+/* File Name   : posix.h                                                */
+/* Creator     : tlewis@exelana.com                                     */
+/* Create Time : March 3, 2012                                          */
+/* Module      : TTDecomp                                               */
+/************************************************************************/
+
+#ifndef __POSIX_H__
+#define __POSIX_H__
+
+#define CONST const
+
+typedef void VOID;
+
+typedef char CHAR;
+typedef unsigned short WCHAR;
+typedef unsigned char BYTE;
+typedef unsigned short WORD;
+typedef unsigned long DWORD;
+typedef unsigned int UINT;
+typedef unsigned long ULONG;
+typedef int INT;
+typedef long LONG;
+
+typedef int BOOL;
+typedef unsigned int SIZE_T;
+
+#define FALSE (0)
+#define TRUE (!FALSE)
+#endif /* __POSIX_H__ */