From c5bf5c15d7b1d1498b5852cda35fe5ab307c125b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 26 Sep 2004 13:37:42 +0000 Subject: [PATCH] PHYSFS_file is now PHYSFS_File to match 2.0 API (but has a typedef for legacy support). --- physfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/physfs.h b/physfs.h index 478702a4..7cc1f01c 100644 --- a/physfs.h +++ b/physfs.h @@ -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 */ /**