PHYSFS_file is now PHYSFS_File to match 2.0 API (but has a typedef for

legacy support).
This commit is contained in:
Ryan C. Gordon 2004-09-26 13:37:42 +00:00
parent 7521634ee6
commit c5bf5c15d7
1 changed files with 2 additions and 1 deletions

View File

@ -269,8 +269,9 @@ PHYSFS_COMPILE_TIME_ASSERT(sint64, sizeof(PHYSFS_sint64) == 8);
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 */
/**