Add Archive timestamp decoding
[installshield_z.git] / posix.h
1 /************************************************************************/
2 /* File Name   : posix.h                                                */
3 /* Creator     : tlewis@exelana.com                                     */
4 /* Create Time : March 3, 2012                                          */
5 /* Module      : TTDecomp                                               */
6 /************************************************************************/
7
8 #ifndef __POSIX_H__
9 #define __POSIX_H__
10
11 #define CONST const
12
13 typedef void VOID;
14
15 typedef char CHAR;
16 typedef unsigned short WCHAR;
17 typedef unsigned char BYTE;
18 typedef unsigned short WORD;
19 typedef unsigned long DWORD;
20 typedef unsigned int UINT;
21 typedef unsigned long ULONG;
22 typedef int INT;
23 typedef long LONG;
24
25 typedef int BOOL;
26 typedef unsigned int SIZE_T;
27
28 #define FALSE (0)
29 #define TRUE (!FALSE)
30 #endif /* __POSIX_H__ */