Selaa lähdekoodia

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

Ryan C. Gordon 14 vuotta sitten
vanhempi
commit
8258274a90
5 muutettua tiedostoa jossa 0 lisäystä ja 64 poistoa
  1. 0 11
      src/physfs_internal.h
  2. 0 13
      src/platform_os2.c
  3. 0 16
      src/platform_pocketpc.c
  4. 0 8
      src/platform_posix.c
  5. 0 16
      src/platform_windows.c

+ 0 - 11
src/physfs_internal.h

@@ -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

+ 0 - 13
src/platform_os2.c

@@ -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);

+ 0 - 16
src/platform_pocketpc.c

@@ -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);

+ 0 - 8
src/platform_posix.c

@@ -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);

+ 0 - 16
src/platform_windows.c

@@ -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);