Removed __PHYSFS_platformEOF(). It's not used anymore.
This commit is contained in:
parent
e4cc3fcd9b
commit
8258274a90
|
@ -1199,17 +1199,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *handle);
|
|||
*/
|
||||
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
|
||||
* type your platform uses. Be sure to check for errors; the caller expects
|
||||
|
|
|
@ -543,19 +543,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
|
|||
} /* __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)
|
||||
{
|
||||
return (os2err(DosResetBuffer((HFILE) opaque)) == NO_ERROR);
|
||||
|
|
|
@ -445,22 +445,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
|
|||
} /* __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)
|
||||
{
|
||||
winCEfile *fh = ((winCEfile *) opaque);
|
||||
|
|
|
@ -362,14 +362,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
|
|||
} /* __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)
|
||||
{
|
||||
const int fd = *((int *) opaque);
|
||||
|
|
|
@ -1088,22 +1088,6 @@ PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque)
|
|||
} /* __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)
|
||||
{
|
||||
WinApiFile *fh = ((WinApiFile *) opaque);
|
||||
|
|
Loading…
Reference in New Issue