Removed __PHYSFS_platformEOF(). It's not used anymore.

This commit is contained in:
Ryan C. Gordon 2011-08-01 17:32:56 -04:00
parent e4cc3fcd9b
commit 8258274a90
5 changed files with 0 additions and 64 deletions

View File

@ -1199,17 +1199,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *handle);
*/ */
int __PHYSFS_platformStat(const char *fn, int *exists, PHYSFS_Stat *stat); int __PHYSFS_platformStat(const char *fn, int *exists, PHYSFS_Stat *stat);
/*
* Determine if a file is at EOF. (opaque) should be cast to whatever data
* type your platform uses.
*
* The caller expects that there was a short read before calling this.
*
* Return non-zero if EOF, zero if it is _not_ EOF.
*/
int __PHYSFS_platformEOF(void *opaque);
/* /*
* Flush any pending writes to disk. (opaque) should be cast to whatever data * Flush any pending writes to disk. (opaque) should be cast to whatever data
* type your platform uses. Be sure to check for errors; the caller expects * type your platform uses. Be sure to check for errors; the caller expects

View File

@ -543,19 +543,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
} /* __PHYSFS_platformFileLength */ } /* __PHYSFS_platformFileLength */
int __PHYSFS_platformEOF(void *opaque)
{
PHYSFS_sint64 len, pos;
len = __PHYSFS_platformFileLength(opaque);
BAIL_IF_MACRO(len == -1, NULL, 1); /* (*shrug*) */
pos = __PHYSFS_platformTell(opaque);
BAIL_IF_MACRO(pos == -1, NULL, 1); /* (*shrug*) */
return (pos >= len);
} /* __PHYSFS_platformEOF */
int __PHYSFS_platformFlush(void *opaque) int __PHYSFS_platformFlush(void *opaque)
{ {
return (os2err(DosResetBuffer((HFILE) opaque)) == NO_ERROR); return (os2err(DosResetBuffer((HFILE) opaque)) == NO_ERROR);

View File

@ -445,22 +445,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
} /* __PHYSFS_platformFileLength */ } /* __PHYSFS_platformFileLength */
int __PHYSFS_platformEOF(void *opaque)
{
PHYSFS_sint64 FilePosition;
int retval = 0;
/* Get the current position in the file */
if ((FilePosition = __PHYSFS_platformTell(opaque)) != 0)
{
/* Non-zero if EOF is equal to the file length */
retval = FilePosition == __PHYSFS_platformFileLength(opaque);
} /* if */
return retval;
} /* __PHYSFS_platformEOF */
int __PHYSFS_platformFlush(void *opaque) int __PHYSFS_platformFlush(void *opaque)
{ {
winCEfile *fh = ((winCEfile *) opaque); winCEfile *fh = ((winCEfile *) opaque);

View File

@ -362,14 +362,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
} /* __PHYSFS_platformFileLength */ } /* __PHYSFS_platformFileLength */
int __PHYSFS_platformEOF(void *opaque)
{
const PHYSFS_sint64 pos = __PHYSFS_platformTell(opaque);
const PHYSFS_sint64 len = __PHYSFS_platformFileLength(opaque);
return (pos >= len);
} /* __PHYSFS_platformEOF */
int __PHYSFS_platformFlush(void *opaque) int __PHYSFS_platformFlush(void *opaque)
{ {
const int fd = *((int *) opaque); const int fd = *((int *) opaque);

View File

@ -1088,22 +1088,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
} /* __PHYSFS_platformFileLength */ } /* __PHYSFS_platformFileLength */
int __PHYSFS_platformEOF(void *opaque)
{
PHYSFS_sint64 FilePosition;
int retval = 0;
/* Get the current position in the file */
if ((FilePosition = __PHYSFS_platformTell(opaque)) != 0)
{
/* Non-zero if EOF is equal to the file length */
retval = FilePosition == __PHYSFS_platformFileLength(opaque);
} /* if */
return retval;
} /* __PHYSFS_platformEOF */
int __PHYSFS_platformFlush(void *opaque) int __PHYSFS_platformFlush(void *opaque)
{ {
WinApiFile *fh = ((WinApiFile *) opaque); WinApiFile *fh = ((WinApiFile *) opaque);