/*\ |*| Parity Archive - A way to restore missing files in a set. |*| |*| Copyright (C) 2001 Willem Monsuwe (willem@stack.nl) |*| |*| Type definitions \*/ #ifndef TYPES_H #define TYPES_H #include typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; #ifdef _MSC_VER typedef signed __int64 i64; #else typedef signed long long i64; #endif typedef u8 md5[16]; typedef struct par_s par_t; typedef struct pxx_s pxx_t; typedef struct pfile_entr_s pfile_entr_t; typedef struct pfile_s pfile_t; typedef struct hfile_s hfile_t; typedef struct sub_s sub_t; typedef struct file_s *file_t; #endif /* TYPES_H */