annotate src/timeconv.h @ 136:16770fc77139

fix for const correctness on Fedora 11
author Carl Byington <carl@five-ten-sg.com>
date Sat, 07 Feb 2009 09:29:29 -0800
parents 5e4d6faada34
children 6954d315aaa8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1 #ifndef __TIMECONV_H
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 #define __TIMECONV_H
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3
132
5e4d6faada34 fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
4 #include "common.h"
5e4d6faada34 fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
5
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
6 #ifdef __cplusplus
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
7 extern "C" {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
8 #endif
132
5e4d6faada34 fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
9 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
5e4d6faada34 fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
10 char * fileTimeToAscii (const FILETIME *filetime);
5e4d6faada34 fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
11 struct tm * fileTimeToStructTM (const FILETIME *filetime);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
12 #ifdef __cplusplus
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
13 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
14 #endif
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
15
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
16 #endif