comparison src/timeconv.h @ 172:6954d315aaa8

move version-info into main configure.in, and set it properly. prefix all external symbols in the shared library with pst_ to avoid symbol clashes with other shared libraries.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 16:00:48 -0700
parents 5e4d6faada34
children b65e8d0a088a
comparison
equal deleted inserted replaced
171:6c1e75bc4cac 172:6954d315aaa8
4 #include "common.h" 4 #include "common.h"
5 5
6 #ifdef __cplusplus 6 #ifdef __cplusplus
7 extern "C" { 7 extern "C" {
8 #endif 8 #endif
9 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); 9 time_t pst_fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
10 char * fileTimeToAscii (const FILETIME *filetime); 10 char * pst_fileTimeToAscii (const FILETIME *filetime);
11 struct tm * fileTimeToStructTM (const FILETIME *filetime); 11 struct tm * pst_fileTimeToStructTM (const FILETIME *filetime);
12 #ifdef __cplusplus 12 #ifdef __cplusplus
13 } 13 }
14 #endif 14 #endif
15 15
16 #endif 16 #endif