blob: 01877a308c93edd18dca80fc6b691f2357bc3516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#ifdef _WIN32
#include <time.h>
#ifndef METRO
#include <winsock2.h>
#endif
#include <windows.h>
#include "fitz.h"
#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
#define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64
#else
#define DELTA_EPOCH_IN_MICROSECS 11644473600000000ULL
#endif
struct timeval;
int gettimeofday(struct timeval *tv, struct timezone *tz)
{
FILETIME ft;
unsigned __int64 tmpres = 0;
if (tv)
{
GetSystemTimeAsFileTime(&ft);
tmpres |= ft.dwHighDateTime;
tmpres <<= 32;
tmpres |= ft.dwLowDateTime;
tmpres /= 10; /*convert into microseconds*/
/*converting file time to unix epoch*/
tmpres -= DELTA_EPOCH_IN_MICROSECS;
tv->tv_sec = (long)(tmpres / 1000000UL);
tv->tv_usec = (long)(tmpres % 1000000UL);
}
return 0;
}
FILE *fopen_utf8(const char *name, const char *mode)
{
wchar_t *wname, *wmode, *d;
const char *s;
int c;
FILE *file;
d = wname = malloc((strlen(name)+1) * sizeof(wchar_t));
if (d == NULL)
return NULL;
s = name;
while (*s) {
s += fz_chartorune(&c, s);
*d++ = c;
}
*d = 0;
d = wmode = malloc((strlen(mode)+1) * sizeof(wchar_t));
if (d == NULL)
{
free(wname);
return NULL;
}
s = mode;
while (*s) {
s += fz_chartorune(&c, s);
*d++ = c;
}
*d = 0;
file = _wfopen(wname, wmode);
free(wname);
free(wmode);
return file;
}
#else
void fz_gettimeofday_dummy() { }
#endif
|