Mercurial > libpst
view src/timeconv.h @ 42:7a97f50c39c5 stable-0-5-12 **FUNKY**
security fix for potential buffer overrun in lz decompress
author | carl |
---|---|
date | Tue, 02 Oct 2007 16:10:36 -0700 |
parents | c508ee15dfca |
children | 0f1492b7fe8b |
line wrap: on
line source
#ifndef __TIMECONV_H #define __TIMECONV_H #include "common.h" #include <time.h> #ifdef __cplusplus extern "C" { #endif time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ); char * fileTimeToAscii (const FILETIME *filetime); struct tm * fileTimeToStructTM (const FILETIME *filetime); #ifdef __cplusplus } #endif #endif