More cleanups.

This commit is contained in:
Ryan C. Gordon 2002-04-13 00:56:12 +00:00
parent bed1042f88
commit 228fbf096e
1 changed files with 7 additions and 8 deletions

View File

@ -3,13 +3,9 @@
* *
* Please see the file LICENSE in the source's root directory. * Please see the file LICENSE in the source's root directory.
* *
* This file written by Ryan C. Gordon. * This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
*/ */
#if (defined __STRICT_ANSI__)
#define __PHYSFS_DOING_STRICT_ANSI__
#endif
#include <windows.h> #include <windows.h>
#include <userenv.h> #include <userenv.h>
#include <stdio.h> #include <stdio.h>
@ -62,6 +58,9 @@ char **__PHYSFS_platformDetectAvailableCDs(void)
{ {
if (GetDriveType(drive_str) == DRIVE_CDROM) if (GetDriveType(drive_str) == DRIVE_CDROM)
{ {
/* !!! FIXME: Make sure there's really a disc in the drive? */
char **tmp = realloc(retval, sizeof (char *) * cd_count + 1); char **tmp = realloc(retval, sizeof (char *) * cd_count + 1);
if (tmp) if (tmp)
{ {
@ -146,7 +145,7 @@ char *__PHYSFS_platformGetUserDir(void)
{ {
char *userdir = NULL; char *userdir = NULL;
if(runningNT) if (runningNT)
{ {
userdir = ProfileDirectory; userdir = ProfileDirectory;
} }
@ -441,7 +440,7 @@ int __PHYSFS_platformMkDir(const char *path)
* *
* Return zero if there was a catastrophic failure and non-zero otherwise. * Return zero if there was a catastrophic failure and non-zero otherwise.
*/ */
static int doNTInit() static int doNTInit(void)
{ {
DWORD pathsize = 0; DWORD pathsize = 0;
char TempProfileDirectory[1]; char TempProfileDirectory[1];
@ -530,7 +529,7 @@ int __PHYSFS_platformInit(void)
* *
* Return zero if there was a catastrophic failure and non-zero otherwise. * Return zero if there was a catastrophic failure and non-zero otherwise.
*/ */
static int doNTDeinit() static int doNTDeinit(void)
{ {
if(CloseHandle(AccessTokenHandle) != S_OK) if(CloseHandle(AccessTokenHandle) != S_OK)
{ {