view src/timeconv.h @ 178:b4d1a35bf4ab

Added tag stable-0-6-35 for changeset 59bd93d02feb
author Carl Byington <carl@five-ten-sg.com>
date Wed, 08 Apr 2009 15:31:51 -0700
parents 6954d315aaa8
children b65e8d0a088a
line wrap: on
line source

#ifndef __TIMECONV_H
#define __TIMECONV_H

#include "common.h"

#ifdef __cplusplus
extern "C" {
#endif
    time_t pst_fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
    char * pst_fileTimeToAscii (const FILETIME *filetime);
    struct tm * pst_fileTimeToStructTM (const FILETIME *filetime);
#ifdef __cplusplus
}
#endif

#endif