Mercurial > libpst
annotate src/timeconv.h @ 177:59bd93d02feb stable-0-6-35
add archive files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 08 Apr 2009 15:10:05 -0700 |
parents | 6954d315aaa8 |
children | b65e8d0a088a |
rev | line source |
---|---|
16 | 1 #ifndef __TIMECONV_H |
2 #define __TIMECONV_H | |
3 | |
132
5e4d6faada34
fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
4 #include "common.h" |
5e4d6faada34
fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
5 |
16 | 6 #ifdef __cplusplus |
7 extern "C" { | |
8 #endif | |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
9 time_t pst_fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
10 char * pst_fileTimeToAscii (const FILETIME *filetime); |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
11 struct tm * pst_fileTimeToStructTM (const FILETIME *filetime); |
16 | 12 #ifdef __cplusplus |
13 } | |
14 #endif | |
15 | |
16 #endif |