Mercurial > libpst
annotate common.h @ 12:3f627519a92d stable-0-5-2
properly ignore (second block zero) errors. that will just drop some unknown attachments, but the rest of the data is still found
author | carl |
---|---|
date | Sat, 18 Feb 2006 09:56:00 -0800 |
parents | 6b1b602514db |
children |
rev | line source |
---|---|
0 | 1 |
2 #ifndef __COMMON_H | |
3 #define __COMMON_H | |
4 | |
5 #ifndef _WIN32 | |
6 typedef unsigned int DWORD; | |
7 typedef unsigned short int WORD; | |
8 typedef unsigned char BYTE; | |
9 typedef unsigned int UINT32; | |
10 | |
11 # pragma pack (1) | |
12 | |
13 # ifndef FILETIME_DEFINED | |
14 # define FILETIME_DEFINED | |
15 /*Win32 Filetime struct - copied from WINE*/ | |
16 typedef struct { | |
17 unsigned int dwLowDateTime; | |
18 unsigned int dwHighDateTime; | |
19 } FILETIME; | |
20 # endif | |
21 #endif // _WIN32 | |
22 #endif // __COMMON_H |