Skip to content

Latest commit

 

History

History
1151 lines (927 loc) · 31.5 KB

win32.c

File metadata and controls

1151 lines (927 loc) · 31.5 KB
 
Aug 23, 2001
Aug 23, 2001
1
/*
Aug 23, 2001
Aug 23, 2001
2
* Win32 support routines for PhysicsFS.
Aug 23, 2001
Aug 23, 2001
3
4
5
*
* Please see the file LICENSE in the source's root directory.
*
Apr 13, 2002
Apr 13, 2002
6
* This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
Aug 23, 2001
Aug 23, 2001
7
8
*/
May 10, 2002
May 10, 2002
9
10
11
12
#if HAVE_CONFIG_H
# include <config.h>
#endif
Jul 10, 2002
Jul 10, 2002
13
14
#ifdef WIN32
Aug 23, 2001
Aug 23, 2001
15
16
#include <windows.h>
#include <stdio.h>
Aug 29, 2001
Aug 29, 2001
17
#include <stdlib.h>
Jun 29, 2002
Jun 29, 2002
18
19
#include <string.h>
#include <errno.h>
Aug 29, 2001
Aug 29, 2001
20
#include <ctype.h>
Jun 7, 2002
Jun 7, 2002
21
#include <time.h>
May 6, 2002
May 6, 2002
22
Aug 23, 2001
Aug 23, 2001
23
24
25
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Dec 11, 2002
Dec 11, 2002
26
27
#if (defined _MSC_VER)
#define alloca(x) _alloca(x)
Sep 6, 2005
Sep 6, 2005
28
#elif (defined __MINGW32__) /* scary...hopefully this is okay. */
Dec 11, 2002
Dec 11, 2002
29
#define alloca(x) __builtin_alloca(x)
Jun 29, 2002
Jun 29, 2002
30
31
#endif
Dec 8, 2003
Dec 8, 2003
32
33
34
35
#define LOWORDER_UINT64(pos) (PHYSFS_uint32) \
(pos & 0x00000000FFFFFFFF)
#define HIGHORDER_UINT64(pos) (PHYSFS_uint32) \
(((pos & 0xFFFFFFFF00000000) >> 32) & 0x00000000FFFFFFFF)
Apr 3, 2002
Apr 3, 2002
36
Jun 29, 2002
Jun 29, 2002
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* GetUserProfileDirectory() is only available on >= NT4 (no 9x/ME systems!) */
typedef BOOL (STDMETHODCALLTYPE FAR * LPFNGETUSERPROFILEDIR) (
HANDLE hToken,
LPTSTR lpProfileDir,
LPDWORD lpcchSize);
/* GetFileAttributesEx() is only available on >= Win98 or WinNT4 ... */
typedef BOOL (STDMETHODCALLTYPE FAR * LPFNGETFILEATTRIBUTESEX) (
LPCTSTR lpFileName,
GET_FILEEX_INFO_LEVELS fInfoLevelId,
LPVOID lpFileInformation);
typedef struct
{
HANDLE handle;
int readonly;
} win32file;
Aug 23, 2001
Aug 23, 2001
54
Jun 29, 2002
Jun 29, 2002
55
56
57
58
const char *__PHYSFS_platformDirSeparator = "\\";
static LPFNGETFILEATTRIBUTESEX pGetFileAttributesEx = NULL;
static HANDLE libKernel32 = NULL;
static char *userDir = NULL;
Aug 23, 2001
Aug 23, 2001
59
Jun 29, 2002
Jun 29, 2002
60
61
62
63
64
/*
* Users without the platform SDK don't have this defined. The original docs
* for SetFilePointer() just said to compare with 0xFFFFFFFF, so this should
* work as desired
*/
Dec 8, 2003
Dec 8, 2003
65
#define PHYSFS_INVALID_SET_FILE_POINTER 0xFFFFFFFF
May 6, 2002
May 6, 2002
66
Jun 29, 2002
Jun 29, 2002
67
/* just in case... */
Dec 8, 2003
Dec 8, 2003
68
69
#define PHYSFS_INVALID_FILE_ATTRIBUTES 0xFFFFFFFF
Jun 29, 2002
Jun 29, 2002
70
71
Jun 10, 2002
Jun 10, 2002
72
73
74
75
76
77
78
79
80
81
/*
* Figure out what the last failing Win32 API call was, and
* generate a human-readable string for the error message.
*
* The return value is a static buffer that is overwritten with
* each call to this function.
*/
static const char *win32strerror(void)
{
static TCHAR msgbuf[255];
Jun 29, 2002
Jun 29, 2002
82
TCHAR *ptr = msgbuf;
Jun 10, 2002
Jun 10, 2002
83
84
85
86
87
88
89
90
91
92
93
94
FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), /* Default language */
msgbuf,
sizeof (msgbuf) / sizeof (TCHAR),
NULL
);
Jun 29, 2002
Jun 29, 2002
95
96
97
98
99
100
101
102
103
104
/* chop off newlines. */
for (ptr = msgbuf; *ptr; ptr++)
{
if ((*ptr == '\n') || (*ptr == '\r'))
{
*ptr = ' ';
break;
} /* if */
} /* for */
Jun 10, 2002
Jun 10, 2002
105
106
107
108
return((const char *) msgbuf);
} /* win32strerror */
Jun 29, 2002
Jun 29, 2002
109
static char *getExePath(const char *argv0)
Jun 7, 2002
Jun 7, 2002
110
{
Jun 29, 2002
Jun 29, 2002
111
112
113
DWORD buflen;
int success = 0;
char *ptr = NULL;
Mar 14, 2005
Mar 14, 2005
114
char *retval = (char *) allocator.Malloc(sizeof (TCHAR) * (MAX_PATH + 1));
Jun 29, 2002
Jun 29, 2002
115
116
117
118
119
120
121
122
123
124
125
126
127
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
retval[0] = '\0';
buflen = GetModuleFileName(NULL, retval, MAX_PATH + 1);
if (buflen <= 0)
__PHYSFS_setError(win32strerror());
else
{
retval[buflen] = '\0'; /* does API always null-terminate this? */
/* make sure the string was not truncated. */
if (__PHYSFS_platformStricmp(&retval[buflen - 4], ".exe") != 0)
Aug 1, 2002
Aug 1, 2002
128
__PHYSFS_setError(ERR_GETMODFN_TRUNC);
Jun 29, 2002
Jun 29, 2002
129
130
131
132
else
{
ptr = strrchr(retval, '\\');
if (ptr == NULL)
Jul 28, 2002
Jul 28, 2002
133
__PHYSFS_setError(ERR_GETMODFN_NO_DIR);
Jun 29, 2002
Jun 29, 2002
134
135
136
137
138
139
140
141
142
143
144
145
146
else
{
*(ptr + 1) = '\0'; /* chop off filename. */
success = 1;
} /* else */
} /* else */
} /* else */
/* if any part of the previous approach failed, try SearchPath()... */
if (!success)
{
if (argv0 == NULL)
Jul 28, 2002
Jul 28, 2002
147
__PHYSFS_setError(ERR_ARGV0_IS_NULL);
Jun 29, 2002
Jun 29, 2002
148
149
150
151
152
153
else
{
buflen = SearchPath(NULL, argv0, NULL, MAX_PATH+1, retval, &ptr);
if (buflen == 0)
__PHYSFS_setError(win32strerror());
else if (buflen > MAX_PATH)
Jul 28, 2002
Jul 28, 2002
154
__PHYSFS_setError(ERR_SEARCHPATH_TRUNC);
Jun 29, 2002
Jun 29, 2002
155
156
157
158
159
160
161
else
success = 1;
} /* else */
} /* if */
if (!success)
{
Mar 14, 2005
Mar 14, 2005
162
allocator.Free(retval);
Jun 29, 2002
Jun 29, 2002
163
164
165
166
return(NULL); /* physfs error message will be set, above. */
} /* if */
/* free up the bytes we didn't actually use. */
Mar 14, 2005
Mar 14, 2005
167
ptr = (char *) allocator.Realloc(retval, strlen(retval) + 1);
Jun 29, 2002
Jun 29, 2002
168
169
170
171
172
if (ptr != NULL)
retval = ptr;
return(retval); /* w00t. */
} /* getExePath */
Jun 7, 2002
Jun 7, 2002
173
174
175
/*
Jun 29, 2002
Jun 29, 2002
176
177
178
* Try to make use of GetUserProfileDirectory(), which isn't available on
* some common variants of Win32. If we can't use this, we just punt and
* use the physfs base dir for the user dir, too.
Jun 7, 2002
Jun 7, 2002
179
*
Jun 29, 2002
Jun 29, 2002
180
181
182
183
* On success, module-scope variable (userDir) will have a pointer to
* a malloc()'d string of the user's profile dir, and a non-zero value is
* returned. If we can't determine the profile dir, (userDir) will
* be NULL, and zero is returned.
Jun 7, 2002
Jun 7, 2002
184
*/
Jun 29, 2002
Jun 29, 2002
185
static int determineUserDir(void)
Jun 7, 2002
Jun 7, 2002
186
{
Jun 29, 2002
Jun 29, 2002
187
DWORD psize = 0;
Jun 10, 2002
Jun 10, 2002
188
189
char dummy[1];
BOOL rc = 0;
Jun 29, 2002
Jun 29, 2002
190
191
192
193
HANDLE processHandle; /* Current process handle */
HANDLE accessToken = NULL; /* Security handle to process */
LPFNGETUSERPROFILEDIR GetUserProfileDirectory;
HMODULE lib;
Jun 10, 2002
Jun 10, 2002
194
Jun 29, 2002
Jun 29, 2002
195
assert(userDir == NULL);
Jun 10, 2002
Jun 10, 2002
196
Jun 29, 2002
Jun 29, 2002
197
198
199
200
201
202
/*
* GetUserProfileDirectory() is only available on NT 4.0 and later.
* This means Win95/98/ME (and CE?) users have to do without, so for
* them, we'll default to the base directory when we can't get the
* function pointer.
*/
Jun 10, 2002
Jun 10, 2002
203
Jun 29, 2002
Jun 29, 2002
204
205
206
207
208
lib = LoadLibrary("userenv.dll");
if (lib)
{
/* !!! FIXME: Handle Unicode? */
GetUserProfileDirectory = (LPFNGETUSERPROFILEDIR)
Jun 10, 2002
Jun 10, 2002
209
GetProcAddress(lib, "GetUserProfileDirectoryA");
Jun 29, 2002
Jun 29, 2002
210
211
212
213
214
215
216
217
218
219
220
221
222
223
if (GetUserProfileDirectory)
{
processHandle = GetCurrentProcess();
if (OpenProcessToken(processHandle, TOKEN_QUERY, &accessToken))
{
/*
* Should fail. Will write the size of the profile path in
* psize. Also note that the second parameter can't be
* NULL or the function fails.
*/
rc = GetUserProfileDirectory(accessToken, dummy, &psize);
assert(!rc); /* success?! */
/* Allocate memory for the profile directory */
Mar 14, 2005
Mar 14, 2005
224
userDir = (char *) allocator.Malloc(psize);
Jun 29, 2002
Jun 29, 2002
225
226
227
228
if (userDir != NULL)
{
if (!GetUserProfileDirectory(accessToken, userDir, &psize))
{
Mar 14, 2005
Mar 14, 2005
229
allocator.Free(userDir);
Jun 29, 2002
Jun 29, 2002
230
231
232
233
userDir = NULL;
} /* if */
} /* else */
} /* if */
Jun 10, 2002
Jun 10, 2002
234
Jun 29, 2002
Jun 29, 2002
235
236
CloseHandle(accessToken);
} /* if */
Jun 10, 2002
Jun 10, 2002
237
Jun 29, 2002
Jun 29, 2002
238
FreeLibrary(lib);
Jun 10, 2002
Jun 10, 2002
239
240
} /* if */
Jun 29, 2002
Jun 29, 2002
241
if (userDir == NULL) /* couldn't get profile for some reason. */
Jun 7, 2002
Jun 7, 2002
242
{
Jun 29, 2002
Jun 29, 2002
243
244
245
/* Might just be a non-NT system; resort to the basedir. */
userDir = getExePath(NULL);
BAIL_IF_MACRO(userDir == NULL, NULL, 0); /* STILL failed?! */
Jun 10, 2002
Jun 10, 2002
246
} /* if */
Jun 7, 2002
Jun 7, 2002
247
Jun 29, 2002
Jun 29, 2002
248
249
return(1); /* We made it: hit the showers. */
} /* determineUserDir */
Jun 10, 2002
Jun 10, 2002
250
Jun 7, 2002
Jun 7, 2002
251
Jul 14, 2002
Jul 14, 2002
252
static BOOL mediaInDrive(const char *drive)
Jun 7, 2002
Jun 7, 2002
253
{
Jun 29, 2002
Jun 29, 2002
254
UINT oldErrorMode;
Jul 14, 2002
Jul 14, 2002
255
256
DWORD tmp;
BOOL retval;
Jun 7, 2002
Jun 7, 2002
257
Dec 8, 2003
Dec 8, 2003
258
/* Prevent windows warning message appearing when checking media size */
Jun 29, 2002
Jun 29, 2002
259
oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
Jun 7, 2002
Jun 7, 2002
260
261
/* If this function succeeds, there's media in the drive */
Jul 14, 2002
Jul 14, 2002
262
retval = GetVolumeInformation(drive, NULL, 0, NULL, NULL, &tmp, NULL, 0);
Jun 7, 2002
Jun 7, 2002
263
264
/* Revert back to old windows error handler */
Jun 29, 2002
Jun 29, 2002
265
266
SetErrorMode(oldErrorMode);
Jul 14, 2002
Jul 14, 2002
267
return(retval);
Jun 29, 2002
Jun 29, 2002
268
} /* mediaInDrive */
Jun 7, 2002
Jun 7, 2002
269
Aug 23, 2001
Aug 23, 2001
270
Sep 29, 2004
Sep 29, 2004
271
void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
Aug 23, 2001
Aug 23, 2001
272
273
{
char drive_str[4] = "x:\\";
Sep 29, 2004
Sep 29, 2004
274
275
char ch;
for (ch = 'A'; ch <= 'Z'; ch++)
Aug 23, 2001
Aug 23, 2001
276
{
Sep 29, 2004
Sep 29, 2004
277
drive_str[0] = ch;
Jun 29, 2002
Jun 29, 2002
278
if (GetDriveType(drive_str) == DRIVE_CDROM && mediaInDrive(drive_str))
Sep 29, 2004
Sep 29, 2004
279
cb(data, drive_str);
Aug 23, 2001
Aug 23, 2001
280
} /* for */
Sep 29, 2004
Sep 29, 2004
281
} /* __PHYSFS_platformDetectAvailableCDs */
Aug 23, 2001
Aug 23, 2001
282
283
Oct 9, 2001
Oct 9, 2001
284
285
char *__PHYSFS_platformCalcBaseDir(const char *argv0)
{
May 22, 2003
May 22, 2003
286
287
if ((argv0 != NULL) && (strchr(argv0, '\\') != NULL))
return(NULL); /* default behaviour can handle this. */
Oct 9, 2001
Oct 9, 2001
288
Mar 21, 2002
Mar 21, 2002
289
return(getExePath(argv0));
Aug 23, 2001
Aug 23, 2001
290
291
292
293
294
} /* __PHYSFS_platformCalcBaseDir */
char *__PHYSFS_platformGetUserName(void)
{
Aug 23, 2001
Aug 23, 2001
295
DWORD bufsize = 0;
Aug 23, 2001
Aug 23, 2001
296
297
298
299
LPTSTR retval = NULL;
if (GetUserName(NULL, &bufsize) == 0) /* This SHOULD fail. */
{
Mar 14, 2005
Mar 14, 2005
300
retval = (LPTSTR) allocator.Malloc(bufsize);
Aug 23, 2001
Aug 23, 2001
301
302
303
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
if (GetUserName(retval, &bufsize) == 0) /* ?! */
{
Jun 10, 2002
Jun 10, 2002
304
__PHYSFS_setError(win32strerror());
Mar 14, 2005
Mar 14, 2005
305
allocator.Free(retval);
Aug 23, 2001
Aug 23, 2001
306
307
308
309
310
311
312
313
314
315
retval = NULL;
} /* if */
} /* if */
return((char *) retval);
} /* __PHYSFS_platformGetUserName */
char *__PHYSFS_platformGetUserDir(void)
{
Mar 14, 2005
Mar 14, 2005
316
char *retval = (char *) allocator.Malloc(strlen(userDir) + 1);
Jun 10, 2002
Jun 10, 2002
317
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
Jun 29, 2002
Jun 29, 2002
318
319
strcpy(retval, userDir); /* calculated at init time. */
return(retval);
Aug 23, 2001
Aug 23, 2001
320
321
322
} /* __PHYSFS_platformGetUserDir */
Apr 3, 2002
Apr 3, 2002
323
PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
Aug 23, 2001
Aug 23, 2001
324
{
Jun 29, 2002
Jun 29, 2002
325
return((PHYSFS_uint64) GetCurrentThreadId());
Aug 23, 2001
Aug 23, 2001
326
327
328
} /* __PHYSFS_platformGetThreadID */
Aug 23, 2001
Aug 23, 2001
329
/* ...make this Cygwin AND Visual C friendly... */
Aug 23, 2001
Aug 23, 2001
330
331
int __PHYSFS_platformStricmp(const char *x, const char *y)
{
Apr 12, 2002
Apr 12, 2002
332
333
334
#if (defined _MSC_VER)
return(stricmp(x, y));
#else
Aug 23, 2001
Aug 23, 2001
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
int ux, uy;
do
{
ux = toupper((int) *x);
uy = toupper((int) *y);
if (ux > uy)
return(1);
else if (ux < uy)
return(-1);
x++;
y++;
} while ((ux) && (uy));
return(0);
Apr 12, 2002
Apr 12, 2002
350
#endif
Aug 23, 2001
Aug 23, 2001
351
352
353
} /* __PHYSFS_platformStricmp */
Nov 9, 2003
Nov 9, 2003
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
int __PHYSFS_platformStrnicmp(const char *x, const char *y, PHYSFS_uint32 len)
{
#if (defined _MSC_VER)
return(strnicmp(x, y, (int) len));
#else
int ux, uy;
if (!len)
return(0);
do
{
ux = toupper((int) *x);
uy = toupper((int) *y);
if (ux > uy)
return(1);
else if (ux < uy)
return(-1);
x++;
y++;
len--;
} while ((ux) && (uy) && (len));
return(0);
#endif
} /* __PHYSFS_platformStricmp */
Aug 23, 2001
Aug 23, 2001
382
383
int __PHYSFS_platformExists(const char *fname)
{
Dec 8, 2003
Dec 8, 2003
384
385
386
387
388
BAIL_IF_MACRO
(
GetFileAttributes(fname) == PHYSFS_INVALID_FILE_ATTRIBUTES,
win32strerror(), 0
);
Aug 21, 2002
Aug 21, 2002
389
return(1);
Aug 23, 2001
Aug 23, 2001
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
} /* __PHYSFS_platformExists */
int __PHYSFS_platformIsSymLink(const char *fname)
{
return(0); /* no symlinks on win32. */
} /* __PHYSFS_platformIsSymlink */
int __PHYSFS_platformIsDirectory(const char *fname)
{
return((GetFileAttributes(fname) & FILE_ATTRIBUTE_DIRECTORY) != 0);
} /* __PHYSFS_platformIsDirectory */
char *__PHYSFS_platformCvtToDependent(const char *prepend,
const char *dirName,
const char *append)
{
int len = ((prepend) ? strlen(prepend) : 0) +
((append) ? strlen(append) : 0) +
strlen(dirName) + 1;
Mar 14, 2005
Mar 14, 2005
412
char *retval = (char *) allocator.Malloc(len);
Aug 23, 2001
Aug 23, 2001
413
char *p;
Aug 23, 2001
Aug 23, 2001
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
if (prepend)
strcpy(retval, prepend);
else
retval[0] = '\0';
strcat(retval, dirName);
if (append)
strcat(retval, append);
for (p = strchr(retval, '/'); p != NULL; p = strchr(p + 1, '/'))
*p = '\\';
return(retval);
} /* __PHYSFS_platformCvtToDependent */
/* Much like my college days, try to sleep for 10 milliseconds at a time... */
void __PHYSFS_platformTimeslice(void)
{
Sleep(10);
} /* __PHYSFS_platformTimeslice */
Sep 29, 2004
Sep 29, 2004
441
442
void __PHYSFS_platformEnumerateFiles(const char *dirname,
int omitSymLinks,
Sep 18, 2005
Sep 18, 2005
443
444
PHYSFS_EnumFilesCallback callback,
const char *origdir,
Sep 29, 2004
Sep 29, 2004
445
void *callbackdata)
Aug 23, 2001
Aug 23, 2001
446
447
448
{
HANDLE dir;
WIN32_FIND_DATA ent;
Jun 8, 2002
Jun 8, 2002
449
size_t len = strlen(dirname);
Sep 29, 2004
Sep 29, 2004
450
char *SearchPath;
Jun 7, 2002
Jun 7, 2002
451
Jun 8, 2002
Jun 8, 2002
452
/* Allocate a new string for path, maybe '\\', "*", and NULL terminator */
Jun 29, 2002
Jun 29, 2002
453
SearchPath = (char *) alloca(len + 3);
Sep 29, 2004
Sep 29, 2004
454
455
if (SearchPath == NULL)
return;
Jun 10, 2002
Jun 10, 2002
456
Jun 7, 2002
Jun 7, 2002
457
458
/* Copy current dirname */
strcpy(SearchPath, dirname);
Jun 8, 2002
Jun 8, 2002
459
460
/* if there's no '\\' at the end of the path, stick one in there. */
Jun 10, 2002
Jun 10, 2002
461
if (SearchPath[len - 1] != '\\')
Jun 8, 2002
Jun 8, 2002
462
{
Jun 10, 2002
Jun 10, 2002
463
464
SearchPath[len++] = '\\';
SearchPath[len] = '\0';
Jun 8, 2002
Jun 8, 2002
465
466
} /* if */
Jun 7, 2002
Jun 7, 2002
467
468
/* Append the "*" to the end of the string */
strcat(SearchPath, "*");
Aug 23, 2001
Aug 23, 2001
469
Jun 7, 2002
Jun 7, 2002
470
dir = FindFirstFile(SearchPath, &ent);
Sep 29, 2004
Sep 29, 2004
471
472
if (dir == INVALID_HANDLE_VALUE)
return;
Aug 23, 2001
Aug 23, 2001
473
Jun 8, 2002
Jun 8, 2002
474
do
Aug 23, 2001
Aug 23, 2001
475
476
477
478
479
480
481
{
if (strcmp(ent.cFileName, ".") == 0)
continue;
if (strcmp(ent.cFileName, "..") == 0)
continue;
Sep 18, 2005
Sep 18, 2005
482
callback(callbackdata, origdir, ent.cFileName);
Jun 8, 2002
Jun 8, 2002
483
} while (FindNextFile(dir, &ent) != 0);
Aug 23, 2001
Aug 23, 2001
484
485
486
487
488
489
490
FindClose(dir);
} /* __PHYSFS_platformEnumerateFiles */
char *__PHYSFS_platformCurrentDir(void)
{
Aug 23, 2001
Aug 23, 2001
491
LPTSTR retval;
Aug 23, 2001
Aug 23, 2001
492
493
DWORD buflen = 0;
Aug 23, 2001
Aug 23, 2001
494
buflen = GetCurrentDirectory(buflen, NULL);
Mar 14, 2005
Mar 14, 2005
495
retval = (LPTSTR) allocator.Malloc(sizeof (TCHAR) * (buflen + 2));
Sep 1, 2001
Sep 1, 2001
496
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
Aug 23, 2001
Aug 23, 2001
497
GetCurrentDirectory(buflen, retval);
Sep 1, 2001
Sep 1, 2001
498
499
500
501
if (retval[buflen - 2] != '\\')
strcat(retval, "\\");
Aug 23, 2001
Aug 23, 2001
502
503
504
505
return((char *) retval);
} /* __PHYSFS_platformCurrentDir */
Sep 1, 2001
Sep 1, 2001
506
/* this could probably use a cleanup. */
Aug 23, 2001
Aug 23, 2001
507
508
char *__PHYSFS_platformRealPath(const char *path)
{
Sep 1, 2001
Sep 1, 2001
509
510
511
512
513
514
char *retval = NULL;
char *p = NULL;
BAIL_IF_MACRO(path == NULL, ERR_INVALID_ARGUMENT, NULL);
BAIL_IF_MACRO(*path == '\0', ERR_INVALID_ARGUMENT, NULL);
Mar 14, 2005
Mar 14, 2005
515
retval = (char *) allocator.Malloc(MAX_PATH);
Sep 1, 2001
Sep 1, 2001
516
517
518
519
520
521
522
523
524
525
526
527
528
529
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
/*
* If in \\server\path format, it's already an absolute path.
* We'll need to check for "." and ".." dirs, though, just in case.
*/
if ((path[0] == '\\') && (path[1] == '\\'))
strcpy(retval, path);
else
{
char *currentDir = __PHYSFS_platformCurrentDir();
if (currentDir == NULL)
{
Mar 14, 2005
Mar 14, 2005
530
allocator.Free(retval);
Sep 1, 2001
Sep 1, 2001
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
} /* if */
if (path[1] == ':') /* drive letter specified? */
{
/*
* Apparently, "D:mypath" is the same as "D:\\mypath" if
* D: is not the current drive. However, if D: is the
* current drive, then "D:mypath" is a relative path. Ugh.
*/
if (path[2] == '\\') /* maybe an absolute path? */
strcpy(retval, path);
else /* definitely an absolute path. */
{
if (path[0] == currentDir[0]) /* current drive; relative. */
{
strcpy(retval, currentDir);
strcat(retval, path + 2);
} /* if */
else /* not current drive; absolute. */
{
retval[0] = path[0];
retval[1] = ':';
retval[2] = '\\';
strcpy(retval + 3, path + 2);
} /* else */
} /* else */
} /* if */
else /* no drive letter specified. */
{
if (path[0] == '\\') /* absolute path. */
{
retval[0] = currentDir[0];
retval[1] = ':';
strcpy(retval + 2, path);
} /* if */
else
{
strcpy(retval, currentDir);
strcat(retval, path);
} /* else */
} /* else */
Mar 14, 2005
Mar 14, 2005
576
allocator.Free(currentDir);
Sep 1, 2001
Sep 1, 2001
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
} /* else */
/* (whew.) Ok, now take out "." and ".." path entries... */
p = retval;
while ( (p = strstr(p, "\\.")) != NULL)
{
/* it's a "." entry that doesn't end the string. */
if (p[2] == '\\')
memmove(p + 1, p + 3, strlen(p + 3) + 1);
/* it's a "." entry that ends the string. */
else if (p[2] == '\0')
p[0] = '\0';
/* it's a ".." entry. */
else if (p[2] == '.')
{
char *prevEntry = p - 1;
while ((prevEntry != retval) && (*prevEntry != '\\'))
prevEntry--;
if (prevEntry == retval) /* make it look like a "." entry. */
memmove(p + 1, p + 2, strlen(p + 2) + 1);
else
{
if (p[3] != '\0') /* doesn't end string. */
*prevEntry = '\0';
else /* ends string. */
memmove(prevEntry + 1, p + 4, strlen(p + 4) + 1);
p = prevEntry;
} /* else */
} /* else if */
else
{
p++; /* look past current char. */
} /* else */
} /* while */
/* shrink the retval's memory block if possible... */
Mar 14, 2005
Mar 14, 2005
619
p = (char *) allocator.Realloc(retval, strlen(retval) + 1);
Sep 1, 2001
Sep 1, 2001
620
621
622
623
if (p != NULL)
retval = p;
return(retval);
Aug 23, 2001
Aug 23, 2001
624
625
626
627
628
} /* __PHYSFS_platformRealPath */
int __PHYSFS_platformMkDir(const char *path)
{
Aug 23, 2001
Aug 23, 2001
629
DWORD rc = CreateDirectory(path, NULL);
Aug 23, 2001
Aug 23, 2001
630
631
632
633
BAIL_IF_MACRO(rc == 0, win32strerror(), 0);
return(1);
} /* __PHYSFS_platformMkDir */
Jun 10, 2002
Jun 10, 2002
634
Jun 29, 2002
Jun 29, 2002
635
636
/*
* Get OS info and save the important parts.
Mar 24, 2002
Mar 24, 2002
637
638
639
*
* Returns non-zero if successful, otherwise it returns zero on failure.
*/
Jun 29, 2002
Jun 29, 2002
640
static int getOSInfo(void)
Mar 24, 2002
Mar 24, 2002
641
{
Jun 29, 2002
Jun 29, 2002
642
643
#if 0 /* we don't actually use this at the moment, but may in the future. */
OSVERSIONINFO OSVersionInfo; /* Information about the OS */
Mar 24, 2002
Mar 24, 2002
644
OSVersionInfo.dwOSVersionInfoSize = sizeof(OSVersionInfo);
Jun 10, 2002
Jun 10, 2002
645
BAIL_IF_MACRO(!GetVersionEx(&OSVersionInfo), win32strerror(), 0);
Mar 24, 2002
Mar 24, 2002
646
647
/* Set to TRUE if we are runnign a WinNT based OS 4.0 or greater */
Jun 29, 2002
Jun 29, 2002
648
649
650
runningNT = ((OSVersionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) &&
(OSVersionInfo.dwMajorVersion >= 4));
#endif
Mar 24, 2002
Mar 24, 2002
651
Jun 29, 2002
Jun 29, 2002
652
653
return(1);
} /* getOSInfo */
Mar 24, 2002
Mar 24, 2002
654
Jun 29, 2002
Jun 29, 2002
655
656
657
658
659
660
661
662
663
664
665
666
667
668
/*
* Some things we want/need are in external DLLs that may or may not be
* available, based on the operating system, etc. This function loads those
* libraries and hunts down the needed pointers.
*
* Libraries that are one-shot deals, or better loaded as needed, are loaded
* elsewhere (see determineUserDir()).
*
* Returns zero if a needed library couldn't load, non-zero if we have enough
* to go on (which means some useful but non-crucial libraries may _NOT_ be
* loaded; check the related module-scope variables).
*/
static int loadLibraries(void)
Mar 24, 2002
Mar 24, 2002
669
{
Aug 28, 2002
Aug 28, 2002
670
671
/* If this get unwieldy, make it table driven. */
Jun 29, 2002
Jun 29, 2002
672
int allNeededLibrariesLoaded = 1; /* flip to zero as needed. */
Mar 24, 2002
Mar 24, 2002
673
Jun 29, 2002
Jun 29, 2002
674
675
libKernel32 = LoadLibrary("kernel32.dll");
if (libKernel32)
Mar 24, 2002
Mar 24, 2002
676
{
Jun 29, 2002
Jun 29, 2002
677
678
pGetFileAttributesEx = (LPFNGETFILEATTRIBUTESEX)
GetProcAddress(libKernel32, "GetFileAttributesExA");
Jun 10, 2002
Jun 10, 2002
679
} /* if */
Jun 29, 2002
Jun 29, 2002
680
681
682
683
684
685
/* add other DLLs here... */
/* see if there's any reason to keep kernel32.dll around... */
if (libKernel32)
Jun 10, 2002
Jun 10, 2002
686
{
Jun 29, 2002
Jun 29, 2002
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
if ((pGetFileAttributesEx == NULL) /* && (somethingElse == NULL) */ )
{
FreeLibrary(libKernel32);
libKernel32 = NULL;
} /* if */
} /* if */
return(allNeededLibrariesLoaded);
} /* loadLibraries */
int __PHYSFS_platformInit(void)
{
BAIL_IF_MACRO(!getOSInfo(), NULL, 0);
BAIL_IF_MACRO(!loadLibraries(), NULL, 0);
BAIL_IF_MACRO(!determineUserDir(), NULL, 0);
return(1); /* It's all good */
} /* __PHYSFS_platformInit */
Mar 24, 2002
Mar 24, 2002
706
707
708
709
int __PHYSFS_platformDeinit(void)
{
Jun 29, 2002
Jun 29, 2002
710
if (userDir != NULL)
Jun 10, 2002
Jun 10, 2002
711
{
Mar 14, 2005
Mar 14, 2005
712
allocator.Free(userDir);
Jun 29, 2002
Jun 29, 2002
713
userDir = NULL;
Jun 10, 2002
Jun 10, 2002
714
} /* if */
Mar 24, 2002
Mar 24, 2002
715
Jun 29, 2002
Jun 29, 2002
716
717
718
719
720
721
if (libKernel32)
{
FreeLibrary(libKernel32);
libKernel32 = NULL;
} /* if */
Jun 29, 2002
Jun 29, 2002
722
723
724
725
726
727
728
729
730
731
732
733
return(1); /* It's all good */
} /* __PHYSFS_platformDeinit */
static void *doOpen(const char *fname, DWORD mode, DWORD creation, int rdonly)
{
HANDLE fileHandle;
win32file *retval;
fileHandle = CreateFile(fname, mode, FILE_SHARE_READ, NULL,
creation, FILE_ATTRIBUTE_NORMAL, NULL);
Dec 8, 2003
Dec 8, 2003
734
735
BAIL_IF_MACRO
(
Dec 22, 2003
Dec 22, 2003
736
fileHandle == INVALID_HANDLE_VALUE,
Dec 8, 2003
Dec 8, 2003
737
738
win32strerror(), NULL
);
Jun 29, 2002
Jun 29, 2002
739
Mar 14, 2005
Mar 14, 2005
740
retval = (win32file *) allocator.Malloc(sizeof (win32file));
Jun 29, 2002
Jun 29, 2002
741
if (retval == NULL)
Jun 10, 2002
Jun 10, 2002
742
{
Jun 29, 2002
Jun 29, 2002
743
744
CloseHandle(fileHandle);
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jun 10, 2002
Jun 10, 2002
745
} /* if */
Mar 24, 2002
Mar 24, 2002
746
Jun 29, 2002
Jun 29, 2002
747
748
749
750
751
retval->readonly = rdonly;
retval->handle = fileHandle;
return(retval);
} /* doOpen */
Mar 24, 2002
Mar 24, 2002
752
Apr 3, 2002
Apr 3, 2002
753
754
void *__PHYSFS_platformOpenRead(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
755
756
return(doOpen(filename, GENERIC_READ, OPEN_EXISTING, 1));
} /* __PHYSFS_platformOpenRead */
Apr 3, 2002
Apr 3, 2002
757
758
759
760
void *__PHYSFS_platformOpenWrite(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
761
762
return(doOpen(filename, GENERIC_WRITE, CREATE_ALWAYS, 0));
} /* __PHYSFS_platformOpenWrite */
Apr 3, 2002
Apr 3, 2002
763
764
765
766
void *__PHYSFS_platformOpenAppend(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
767
768
769
770
void *retval = doOpen(filename, GENERIC_WRITE, OPEN_ALWAYS, 0);
if (retval != NULL)
{
HANDLE h = ((win32file *) retval)->handle;
Dec 8, 2003
Dec 8, 2003
771
772
DWORD rc = SetFilePointer(h, 0, NULL, FILE_END);
if (rc == PHYSFS_INVALID_SET_FILE_POINTER)
Jun 29, 2002
Jun 29, 2002
773
774
775
{
const char *err = win32strerror();
CloseHandle(h);
Mar 14, 2005
Mar 14, 2005
776
allocator.Free(retval);
Jun 29, 2002
Jun 29, 2002
777
778
779
780
781
782
BAIL_MACRO(err, NULL);
} /* if */
} /* if */
return(retval);
} /* __PHYSFS_platformOpenAppend */
Apr 3, 2002
Apr 3, 2002
783
784
785
786
787
PHYSFS_sint64 __PHYSFS_platformRead(void *opaque, void *buffer,
PHYSFS_uint32 size, PHYSFS_uint32 count)
{
Sep 26, 2004
Sep 26, 2004
788
HANDLE Handle = ((win32file *) opaque)->handle;
Apr 3, 2002
Apr 3, 2002
789
790
791
792
DWORD CountOfBytesRead;
PHYSFS_sint64 retval;
/* Read data from the file */
Jul 11, 2002
Jul 11, 2002
793
/* !!! FIXME: uint32 might be a greater # than DWORD */
Sep 26, 2004
Sep 26, 2004
794
if(!ReadFile(Handle, buffer, count * size, &CountOfBytesRead, NULL))
Apr 3, 2002
Apr 3, 2002
795
{
Jun 10, 2002
Jun 10, 2002
796
797
BAIL_MACRO(win32strerror(), -1);
} /* if */
Apr 3, 2002
Apr 3, 2002
798
799
800
else
{
/* Return the number of "objects" read. */
Jul 11, 2002
Jul 11, 2002
801
/* !!! FIXME: What if not the right amount of bytes was read to make an object? */
Apr 3, 2002
Apr 3, 2002
802
retval = CountOfBytesRead / size;
Jun 10, 2002
Jun 10, 2002
803
} /* else */
Apr 3, 2002
Apr 3, 2002
804
Jun 29, 2002
Jun 29, 2002
805
806
807
return(retval);
} /* __PHYSFS_platformRead */
Apr 3, 2002
Apr 3, 2002
808
Jun 29, 2002
Jun 29, 2002
809
PHYSFS_sint64 __PHYSFS_platformWrite(void *opaque, const void *buffer,
Apr 3, 2002
Apr 3, 2002
810
811
PHYSFS_uint32 size, PHYSFS_uint32 count)
{
Sep 26, 2004
Sep 26, 2004
812
HANDLE Handle = ((win32file *) opaque)->handle;
Apr 3, 2002
Apr 3, 2002
813
814
815
816
DWORD CountOfBytesWritten;
PHYSFS_sint64 retval;
/* Read data from the file */
Jul 11, 2002
Jul 11, 2002
817
/* !!! FIXME: uint32 might be a greater # than DWORD */
Sep 26, 2004
Sep 26, 2004
818
if(!WriteFile(Handle, buffer, count * size, &CountOfBytesWritten, NULL))
Apr 3, 2002
Apr 3, 2002
819
{
Jun 10, 2002
Jun 10, 2002
820
821
BAIL_MACRO(win32strerror(), -1);
} /* if */
Apr 3, 2002
Apr 3, 2002
822
823
824
else
{
/* Return the number of "objects" read. */
Jul 11, 2002
Jul 11, 2002
825
/* !!! FIXME: What if not the right number of bytes was written? */
Apr 3, 2002
Apr 3, 2002
826
retval = CountOfBytesWritten / size;
Jun 10, 2002
Jun 10, 2002
827
} /* else */
Apr 3, 2002
Apr 3, 2002
828
Jun 29, 2002
Jun 29, 2002
829
830
831
return(retval);
} /* __PHYSFS_platformWrite */
Apr 3, 2002
Apr 3, 2002
832
833
834
int __PHYSFS_platformSeek(void *opaque, PHYSFS_uint64 pos)
{
Sep 26, 2004
Sep 26, 2004
835
HANDLE Handle = ((win32file *) opaque)->handle;
Apr 3, 2002
Apr 3, 2002
836
DWORD HighOrderPos;
Dec 8, 2003
Dec 8, 2003
837
DWORD *pHighOrderPos;
Jun 29, 2002
Jun 29, 2002
838
DWORD rc;
Apr 3, 2002
Apr 3, 2002
839
840
841
842
/* Get the high order 32-bits of the position */
HighOrderPos = HIGHORDER_UINT64(pos);
Dec 8, 2003
Dec 8, 2003
843
844
845
846
847
848
849
850
851
852
853
854
855
856
/*
* MSDN: "If you do not need the high-order 32 bits, this
* pointer must be set to NULL."
*/
pHighOrderPos = (HighOrderPos) ? &HighOrderPos : NULL;
/*
* !!! FIXME: MSDN: "Windows Me/98/95: If the pointer
* !!! FIXME: lpDistanceToMoveHigh is not NULL, then it must
* !!! FIXME: point to either 0, INVALID_SET_FILE_POINTER, or
* !!! FIXME: the sign extension of the value of lDistanceToMove.
* !!! FIXME: Any other value will be rejected."
*/
Apr 3, 2002
Apr 3, 2002
857
/* Move pointer "pos" count from start of file */
Sep 26, 2004
Sep 26, 2004
858
rc = SetFilePointer(Handle, LOWORDER_UINT64(pos),
Dec 8, 2003
Dec 8, 2003
859
pHighOrderPos, FILE_BEGIN);
Apr 3, 2002
Apr 3, 2002
860
Dec 8, 2003
Dec 8, 2003
861
862
863
if ( (rc == PHYSFS_INVALID_SET_FILE_POINTER) &&
(GetLastError() != NO_ERROR) )
{
Jun 29, 2002
Jun 29, 2002
864
BAIL_MACRO(win32strerror(), 0);
Dec 8, 2003
Dec 8, 2003
865
866
} /* if */
Jun 29, 2002
Jun 29, 2002
867
868
return(1); /* No error occured */
} /* __PHYSFS_platformSeek */
Apr 3, 2002
Apr 3, 2002
869
870
871
872
PHYSFS_sint64 __PHYSFS_platformTell(void *opaque)
{
Sep 26, 2004
Sep 26, 2004
873
HANDLE Handle = ((win32file *) opaque)->handle;
Jun 29, 2002
Jun 29, 2002
874
875
DWORD HighPos = 0;
DWORD LowPos;
Apr 3, 2002
Apr 3, 2002
876
877
878
PHYSFS_sint64 retval;
/* Get current position */
Sep 26, 2004
Sep 26, 2004
879
LowPos = SetFilePointer(Handle, 0, &HighPos, FILE_CURRENT);
Dec 8, 2003
Dec 8, 2003
880
881
if ( (LowPos == PHYSFS_INVALID_SET_FILE_POINTER) &&
(GetLastError() != NO_ERROR) )
Apr 3, 2002
Apr 3, 2002
882
{
Jun 29, 2002
Jun 29, 2002
883
884
BAIL_MACRO(win32strerror(), 0);
} /* if */
May 8, 2002
May 8, 2002
885
886
887
else
{
/* Combine the high/low order to create the 64-bit position value */
Jun 29, 2002
Jun 29, 2002
888
889
890
891
892
893
retval = (((PHYSFS_uint64) HighPos) << 32) | LowPos;
assert(retval >= 0);
} /* else */
return(retval);
} /* __PHYSFS_platformTell */
Apr 3, 2002
Apr 3, 2002
894
895
Jun 29, 2002
Jun 29, 2002
896
PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
Apr 3, 2002
Apr 3, 2002
897
{
Sep 26, 2004
Sep 26, 2004
898
HANDLE Handle = ((win32file *) opaque)->handle;
Jun 29, 2002
Jun 29, 2002
899
900
DWORD SizeHigh;
DWORD SizeLow;
Apr 3, 2002
Apr 3, 2002
901
902
PHYSFS_sint64 retval;
Sep 26, 2004
Sep 26, 2004
903
SizeLow = GetFileSize(Handle, &SizeHigh);
Dec 8, 2003
Dec 8, 2003
904
905
if ( (SizeLow == PHYSFS_INVALID_SET_FILE_POINTER) &&
(GetLastError() != NO_ERROR) )
Apr 3, 2002
Apr 3, 2002
906
{
Jun 10, 2002
Jun 10, 2002
907
908
BAIL_MACRO(win32strerror(), -1);
} /* if */
May 8, 2002
May 8, 2002
909
910
911
else
{
/* Combine the high/low order to create the 64-bit position value */
Jun 29, 2002
Jun 29, 2002
912
913
retval = (((PHYSFS_uint64) SizeHigh) << 32) | SizeLow;
assert(retval >= 0);
Jun 10, 2002
Jun 10, 2002
914
} /* else */
Apr 3, 2002
Apr 3, 2002
915
Jun 29, 2002
Jun 29, 2002
916
917
918
return(retval);
} /* __PHYSFS_platformFileLength */
Apr 3, 2002
Apr 3, 2002
919
920
921
922
923
924
925
int __PHYSFS_platformEOF(void *opaque)
{
PHYSFS_sint64 FilePosition;
int retval = 0;
/* Get the current position in the file */
Jun 29, 2002
Jun 29, 2002
926
if ((FilePosition = __PHYSFS_platformTell(opaque)) != 0)
Apr 3, 2002
Apr 3, 2002
927
{
May 8, 2002
May 8, 2002
928
929
/* Non-zero if EOF is equal to the file length */
retval = FilePosition == __PHYSFS_platformFileLength(opaque);
Jun 29, 2002
Jun 29, 2002
930
931
932
933
} /* if */
return(retval);
} /* __PHYSFS_platformEOF */
Apr 3, 2002
Apr 3, 2002
934
935
936
937
int __PHYSFS_platformFlush(void *opaque)
{
Jun 29, 2002
Jun 29, 2002
938
939
940
win32file *fh = ((win32file *) opaque);
if (!fh->readonly)
BAIL_IF_MACRO(!FlushFileBuffers(fh->handle), win32strerror(), 0);
Apr 3, 2002
Apr 3, 2002
941
Jun 29, 2002
Jun 29, 2002
942
943
return(1);
} /* __PHYSFS_platformFlush */
Apr 3, 2002
Apr 3, 2002
944
945
946
947
int __PHYSFS_platformClose(void *opaque)
{
Sep 26, 2004
Sep 26, 2004
948
949
HANDLE Handle = ((win32file *) opaque)->handle;
BAIL_IF_MACRO(!CloseHandle(Handle), win32strerror(), 0);
Mar 14, 2005
Mar 14, 2005
950
allocator.Free(opaque);
Jun 29, 2002
Jun 29, 2002
951
952
return(1);
} /* __PHYSFS_platformClose */
Apr 3, 2002
Apr 3, 2002
953
954
955
956
957
int __PHYSFS_platformDelete(const char *path)
{
/* If filename is a folder */
Jun 29, 2002
Jun 29, 2002
958
if (GetFileAttributes(path) == FILE_ATTRIBUTE_DIRECTORY)
Apr 3, 2002
Apr 3, 2002
959
{
Jun 29, 2002
Jun 29, 2002
960
961
BAIL_IF_MACRO(!RemoveDirectory(path), win32strerror(), 0);
} /* if */
Apr 3, 2002
Apr 3, 2002
962
963
else
{
Jun 29, 2002
Jun 29, 2002
964
965
BAIL_IF_MACRO(!DeleteFile(path), win32strerror(), 0);
} /* else */
Apr 3, 2002
Apr 3, 2002
966
Jun 29, 2002
Jun 29, 2002
967
968
return(1); /* if you got here, it worked. */
} /* __PHYSFS_platformDelete */
Apr 3, 2002
Apr 3, 2002
969
970
971
972
void *__PHYSFS_platformCreateMutex(void)
{
Jun 29, 2002
Jun 29, 2002
973
974
975
return((void *) CreateMutex(NULL, FALSE, NULL));
} /* __PHYSFS_platformCreateMutex */
Apr 3, 2002
Apr 3, 2002
976
977
978
void __PHYSFS_platformDestroyMutex(void *mutex)
{
Jun 29, 2002
Jun 29, 2002
979
980
981
CloseHandle((HANDLE) mutex);
} /* __PHYSFS_platformDestroyMutex */
Apr 3, 2002
Apr 3, 2002
982
983
984
int __PHYSFS_platformGrabMutex(void *mutex)
{
Jun 29, 2002
Jun 29, 2002
985
986
return(WaitForSingleObject((HANDLE) mutex, INFINITE) != WAIT_FAILED);
} /* __PHYSFS_platformGrabMutex */
Apr 3, 2002
Apr 3, 2002
987
988
989
990
void __PHYSFS_platformReleaseMutex(void *mutex)
{
Jun 29, 2002
Jun 29, 2002
991
992
993
ReleaseMutex((HANDLE) mutex);
} /* __PHYSFS_platformReleaseMutex */
Apr 3, 2002
Apr 3, 2002
994
Jun 29, 2002
Jun 29, 2002
995
static PHYSFS_sint64 FileTimeToPhysfsTime(const FILETIME *ft)
Jun 10, 2002
Jun 10, 2002
996
997
998
{
SYSTEMTIME st_utc;
SYSTEMTIME st_localtz;
Jun 29, 2002
Jun 29, 2002
999
1000
TIME_ZONE_INFORMATION tzi;
DWORD tzid;