Mercurial > libpst
view src/common.h @ 58:a8b772313ff4
fixup debug messages #llx rather than #x, fix 7c block documentation to match code
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 06 Feb 2008 23:05:56 -0800 |
parents | b2a7f2e0926a |
children | 7d5c637aaafb |
line wrap: on
line source
#ifndef __COMMON_H #define __COMMON_H #ifndef _WIN32 typedef unsigned int DWORD; typedef unsigned short int WORD; typedef unsigned char BYTE; typedef unsigned int UINT32; # pragma pack (1) # ifndef FILETIME_DEFINED # define FILETIME_DEFINED /*Win32 Filetime struct - copied from WINE*/ typedef struct { unsigned int dwLowDateTime; unsigned int dwHighDateTime; } FILETIME; # endif #endif // _WIN32 #endif // __COMMON_H