comparison src/timeconv.h @ 132:5e4d6faada34

fix from Fridrich Strba for parallel make
author Carl Byington <carl@five-ten-sg.com>
date Fri, 06 Feb 2009 20:38:04 -0800
parents 6395ced2b8b2
children 6954d315aaa8
comparison
equal deleted inserted replaced
131:dd905e537728 132:5e4d6faada34
1 #ifndef __TIMECONV_H 1 #ifndef __TIMECONV_H
2 #define __TIMECONV_H 2 #define __TIMECONV_H
3
4 #include "common.h"
3 5
4 #ifdef __cplusplus 6 #ifdef __cplusplus
5 extern "C" { 7 extern "C" {
6 #endif 8 #endif
7 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); 9 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
8 10 char * fileTimeToAscii (const FILETIME *filetime);
9 char * fileTimeToAscii (const FILETIME *filetime); 11 struct tm * fileTimeToStructTM (const FILETIME *filetime);
10
11 struct tm * fileTimeToStructTM (const FILETIME *filetime);
12
13 #ifdef __cplusplus 12 #ifdef __cplusplus
14 } 13 }
15 #endif 14 #endif
16 15
17 #endif 16 #endif