comparison src/timeconv.h @ 182:b65e8d0a088a

more cleanup on external names in the shared object file
author Carl Byington <carl@five-ten-sg.com>
date Mon, 13 Apr 2009 11:39:33 -0700
parents 6954d315aaa8
children e3a46f66332b
comparison
equal deleted inserted replaced
181:3b04745ff76d 182:b65e8d0a088a
1 #ifndef __TIMECONV_H 1 #ifndef __PST_TIMECONV_H
2 #define __TIMECONV_H 2 #define __PST_TIMECONV_H
3 3
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 pst_fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
10 char * pst_fileTimeToAscii (const FILETIME *filetime); 9 char * pst_fileTimeToAscii (const FILETIME *filetime);
11 struct tm * pst_fileTimeToStructTM (const FILETIME *filetime); 10 struct tm * pst_fileTimeToStructTM (const FILETIME *filetime);
11 time_t pst_fileTimeToUnixTime( const FILETIME *filetime);
12 #ifdef __cplusplus 12 #ifdef __cplusplus
13 } 13 }
14 #endif 14 #endif
15 15
16 #endif 16 #endif