Mercurial > libpst
annotate src/timeconv.h @ 118:0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
add processing for pst files of type 0x0f
start adding support for properly building and installing libpst.so and the header files required to use it.
remove version.h since the version number is now in config.h
more const correctness issues regarding getopt()
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 31 Jan 2009 12:12:36 -0800 |
parents | c508ee15dfca |
children | 6395ced2b8b2 |
rev | line source |
---|---|
16 | 1 #ifndef __TIMECONV_H |
2 #define __TIMECONV_H | |
3 | |
4 #include <time.h> | |
5 | |
6 #ifdef __cplusplus | |
7 extern "C" { | |
8 #endif | |
9 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); | |
10 | |
11 char * fileTimeToAscii (const FILETIME *filetime); | |
12 | |
13 struct tm * fileTimeToStructTM (const FILETIME *filetime); | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
16
diff
changeset
|
14 |
16 | 15 #ifdef __cplusplus |
16 } | |
17 #endif | |
18 | |
19 #endif |