diff src/timeconv.h @ 199:e3a46f66332b

more changes in recurrence decoding
author Carl Byington <carl@five-ten-sg.com>
date Wed, 13 May 2009 11:59:55 -0700
parents b65e8d0a088a
children ad7b880ad3d1
line wrap: on
line diff
--- a/src/timeconv.h	Tue May 12 19:34:49 2009 -0700
+++ b/src/timeconv.h	Wed May 13 11:59:55 2009 -0700
@@ -6,9 +6,24 @@
 #ifdef __cplusplus
 extern "C" {
 #endif
-    char * pst_fileTimeToAscii (const FILETIME *filetime);
-    struct tm * pst_fileTimeToStructTM (const FILETIME *filetime);
-    time_t pst_fileTimeToUnixTime( const FILETIME *filetime);
+    /** Convert a FILETIME to ascii printable local time.
+       @param[in]  filetime time structure to be converted
+       @param[out] result   pointer to output buffer, must be at least 30 bytes.
+       @return     result pointer to the output buffer
+     */
+    char* pst_fileTimeToAscii (const FILETIME* filetime, char* result);
+
+    /** Convert a FILETIME to unix struct tm.
+       @param[in]  filetime time structure to be converted
+       @param[out] result   pointer to output struct tm
+     */
+    void pst_fileTimeToStructTM (const FILETIME* filetime, struct tm *result);
+
+    /** Convert a FILETIME to unix time_t value.
+       @param[in]  filetime time structure to be converted
+       @return     result time_t value
+     */
+    time_t pst_fileTimeToUnixTime( const FILETIME* filetime);
 #ifdef __cplusplus
 }
 #endif