Mercurial > libpst
view src/timeconv.h @ 389:3f83feface7a
Use plain make when building from Mercurial
The -C/--directory option can be used to change directory.
The make command accepts multiple targets on the command-line.
automake calls the default target 'all'.
author | Paul Wise <pabs3@bonedaddy.net> |
---|---|
date | Sat, 21 Dec 2019 21:25:45 +0800 |
parents | 1e1970f93f94 |
children |
line wrap: on
line source
#ifndef __PST_TIMECONV_H #define __PST_TIMECONV_H #include "common.h" #ifdef __cplusplus extern "C" { #endif /** 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); /** Convert a FILETIME to string in date_format format. @param[in] filetime time structure to be converted @param[in] date_format string ctime_r format of output date @param[out] result pointer to output buffer, must be at least 30 bytes. @return result size_t value returned by strftime */ size_t pst_fileTimeToString( const FILETIME* filetime, const char* date_format, char* result); #ifdef __cplusplus } #endif #endif