소스 검색

Removed a FIXME.

I assume that Win95 didn't allow large files, so this concern probably wasn't
 ever valid in any case. Still, Win95 support has been dropped, so it doesn't
 matter.
Ryan C. Gordon 14 년 전
부모
커밋
b7f3e5bd1e
1개의 변경된 파일0개의 추가작업 그리고 8개의 파일을 삭제
  1. 0 8
      src/platform_windows.c

+ 0 - 8
src/platform_windows.c

@@ -685,14 +685,6 @@ int __PHYSFS_platformSeek(void *opaque, PHYSFS_uint64 pos)
      */
      */
     pHighOrderPos = (HighOrderPos) ? &HighOrderPos : NULL;
     pHighOrderPos = (HighOrderPos) ? &HighOrderPos : NULL;
 
 
-    /*
-     * !!! FIXME: MSDN: "Windows Me/98/95:  If the pointer
-     * !!! FIXME:  lpDistanceToMoveHigh is not NULL, then it must
-     * !!! FIXME:  point to either 0, INVALID_SET_FILE_POINTER, or
-     * !!! FIXME:  the sign extension of the value of lDistanceToMove.
-     * !!! FIXME:  Any other value will be rejected."
-     */
-
     /* Move pointer "pos" count from start of file */
     /* Move pointer "pos" count from start of file */
     rc = SetFilePointer(Handle, LOWORDER_UINT64(pos),
     rc = SetFilePointer(Handle, LOWORDER_UINT64(pos),
                         pHighOrderPos, FILE_BEGIN);
                         pHighOrderPos, FILE_BEGIN);