--- a/platform/win32.c Thu Jul 11 21:37:14 2002 +0000
+++ b/platform/win32.c Thu Jul 11 21:37:30 2002 +0000
@@ -785,7 +785,7 @@
PHYSFS_sint64 retval;
/* Read data from the file */
- /*!!! - uint32 might be a greater # than DWORD */
+ /* !!! FIXME: uint32 might be a greater # than DWORD */
if(!ReadFile(FileHandle, buffer, count * size, &CountOfBytesRead, NULL))
{
BAIL_MACRO(win32strerror(), -1);
@@ -793,7 +793,7 @@
else
{
/* Return the number of "objects" read. */
- /* !!! - What if not the right amount of bytes was read to make an object? */
+ /* !!! FIXME: What if not the right amount of bytes was read to make an object? */
retval = CountOfBytesRead / size;
} /* else */
@@ -809,7 +809,7 @@
PHYSFS_sint64 retval;
/* Read data from the file */
- /*!!! - uint32 might be a greater # than DWORD */
+ /* !!! FIXME: uint32 might be a greater # than DWORD */
if(!WriteFile(FileHandle, buffer, count * size, &CountOfBytesWritten, NULL))
{
BAIL_MACRO(win32strerror(), -1);
@@ -817,7 +817,7 @@
else
{
/* Return the number of "objects" read. */
- /*!!! - What if not the right number of bytes was written? */
+ /* !!! FIXME: What if not the right number of bytes was written? */
retval = CountOfBytesWritten / size;
} /* else */
@@ -834,7 +834,7 @@
/* Get the high order 32-bits of the position */
HighOrderPos = HIGHORDER_UINT64(pos);
- /*!!! SetFilePointer needs a signed 64-bit value. */
+ /* !!! FIXME: SetFilePointer needs a signed 64-bit value. */
/* Move pointer "pos" count from start of file */
rc = SetFilePointer(FileHandle, LOWORDER_UINT64(pos),
&HighOrderPos, FILE_BEGIN);