Mercurial > libpst
annotate timeconv.h @ 15:ac98f448b6ab
patches from debian
author | carl |
---|---|
date | Sun, 19 Feb 2006 14:50:06 -0800 |
parents | 6b1b602514db |
children |
rev | line source |
---|---|
0 | 1 #ifndef __TIMECONV_H |
2 #define __TIMECONV_H | |
3 | |
4 #include "common.h" | |
5 | |
6 #include <time.h> | |
7 | |
8 #ifdef __cplusplus | |
9 extern "C" { | |
10 #endif | |
11 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); | |
12 | |
13 char * fileTimeToAscii (const FILETIME *filetime); | |
14 | |
15 struct tm * fileTimeToStructTM (const FILETIME *filetime); | |
16 | |
17 #ifdef __cplusplus | |
18 } | |
19 #endif | |
20 | |
21 #endif |