00001 #ifndef GAUDIKERNEL_TIME_R_H
00002 #define GAUDIKERNEL_TIME_R_H
00003
00004 #include <ctime>
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifdef _WIN32
00014
00015 extern "C" {
00016 inline struct tm *localtime_r ( const time_t *sec, struct tm *result) {
00017 *result = *localtime(sec);
00018 return result;
00019 }
00020 inline struct tm *gmtime_r ( const time_t *sec, struct tm *result) {
00021 *result = *gmtime(sec);
00022 return result;
00023 }
00024 }
00025
00026 #endif
00027
00028 #endif // GAUDIKERNEL_TIME_R_H