comparison src/timeconv.c @ 75:987aa872294e stable-0-6-11

Use ftello/fseeko to properly handle large files. Document and properly use datasize field in b5 blocks. Fix some MSVC compile issues and collect MSVC dependencies into one place.
author Carl Byington <carl@five-ten-sg.com>
date Tue, 03 Jun 2008 12:00:58 -0700
parents cfd6175f9334
children 0f1492b7fe8b
comparison
equal deleted inserted replaced
74:6f82d13e9300 75:987aa872294e
10 * There are functions in libpst.c to handle the dates 10 * There are functions in libpst.c to handle the dates
11 * Do not use this one 11 * Do not use this one
12 */ 12 */
13 13
14 #include <time.h> 14 #include <time.h>
15 #include "common.h"
16 #include "timeconv.h" 15 #include "timeconv.h"
17 16
18 char * fileTimeToAscii (const FILETIME *filetime) { 17 char * fileTimeToAscii (const FILETIME *filetime) {
19 time_t t1; 18 time_t t1;
20 19