comparison src/timeconv.h @ 16:c508ee15dfca

switch to automake/autoconf
author carl
date Sun, 19 Feb 2006 18:47:46 -0800
parents
children 0f1492b7fe8b
comparison
equal deleted inserted replaced
15:ac98f448b6ab 16:c508ee15dfca
1 #ifndef __TIMECONV_H
2 #define __TIMECONV_H
3
4 #include "common.h"
5
6 #include <time.h>
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
12
13 char * fileTimeToAscii (const FILETIME *filetime);
14
15 struct tm * fileTimeToStructTM (const FILETIME *filetime);
16
17 #ifdef __cplusplus
18 }
19 #endif
20
21 #endif