Mercurial > libpst
diff src/timeconv.h @ 16:c508ee15dfca
switch to automake/autoconf
author | carl |
---|---|
date | Sun, 19 Feb 2006 18:47:46 -0800 |
parents | |
children | 0f1492b7fe8b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/timeconv.h Sun Feb 19 18:47:46 2006 -0800 @@ -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