Mercurial > libpst
diff timeconv.h @ 0:6b1b602514db libpst_0_5
Initial revision
author | carl |
---|---|
date | Fri, 09 Jul 2004 07:26:16 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/timeconv.h Fri Jul 09 07:26:16 2004 -0700 @@ -0,0 +1,21 @@ +#ifndef __TIMECONV_H +#define __TIMECONV_H + +#include "common.h" + +#include <time.h> + +#ifdef __cplusplus +extern "C" { +#endif + time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); + + char * fileTimeToAscii (const FILETIME *filetime); + + struct tm * fileTimeToStructTM (const FILETIME *filetime); + +#ifdef __cplusplus +} +#endif + +#endif