view src/timeconv.h @ 172:6954d315aaa8

move version-info into main configure.in, and set it properly. prefix all external symbols in the shared library with pst_ to avoid symbol clashes with other shared libraries.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 16:00:48 -0700
parents 5e4d6faada34
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