PHYSFS_file is now PHYSFS_File to match 2.0 API (but has a typedef for
legacy support).
--- a/physfs.h Tue Sep 21 17:36:50 2004 +0000
+++ b/physfs.h Sun Sep 26 13:37:42 2004 +0000
@@ -269,8 +269,9 @@
typedef struct
{
void *opaque; /**< That's all you get. Don't touch. */
-} PHYSFS_file;
+} PHYSFS_File;
+typedef PHYSFS_File PHYSFS_file; /* for backwards compatibility with 1.0 */
/**