From f6790ee34eb827ca7e7ff2fd72c09ee3ed79a472 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 8 Mar 2007 22:22:24 +0000 Subject: [PATCH] Renamed win32.c to windows.c (since it would be used for Win64, too.) --- CHANGELOG | 2 +- TODO | 1 - physfs.dsp | 2 +- physfs.vcproj | 2 +- physfs_static.dsp | 2 +- platform/Makefile.am | 4 ++-- platform/unix.c | 2 +- platform/{win32.c => windows.c} | 2 +- 8 files changed, 8 insertions(+), 9 deletions(-) rename platform/{win32.c => windows.c} (99%) diff --git a/CHANGELOG b/CHANGELOG index eba3fedc..78125616 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,7 +2,7 @@ * CHANGELOG. */ -03082007 - Fixed a comment in physfs.h. +03082007 - Fixed a comment in physfs.h. Renamed win32.c to windows.c. 11052006 - More 7zip archiver work (thanks, Dennis!). Initial Unicode work. Minor BeOS realpath tweak. 09272006 - Reworked 7zip archiver (thanks, Dennis!). diff --git a/TODO b/TODO index 88c5a4e1..a471ab04 100644 --- a/TODO +++ b/TODO @@ -29,7 +29,6 @@ UNICODE: - ZIP: Uses UTF-8 internally, so it's good to go. Stuff: -- Rename win32.c to windows.c ... it should work on Win64. - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less important, since streaming archives aren't of much value to games (which is why zipfiles are king: random access), but it could have uses for, say, diff --git a/physfs.dsp b/physfs.dsp index 27007f86..965e0045 100644 --- a/physfs.dsp +++ b/physfs.dsp @@ -169,7 +169,7 @@ SOURCE=.\archivers\wad.c # End Source File # Begin Source File -SOURCE=.\platform\win32.c +SOURCE=.\platform\windows.c # End Source File # Begin Source File diff --git a/physfs.vcproj b/physfs.vcproj index 3403c46d..b62b7baa 100644 --- a/physfs.vcproj +++ b/physfs.vcproj @@ -209,7 +209,7 @@ RelativePath=".\archivers\wad.c"> + RelativePath=".\platform\windows.c"> diff --git a/physfs_static.dsp b/physfs_static.dsp index c22c0dc0..83ca3c4d 100644 --- a/physfs_static.dsp +++ b/physfs_static.dsp @@ -171,7 +171,7 @@ SOURCE=.\archivers\wad.c # End Source File # Begin Source File -SOURCE=.\platform\win32.c +SOURCE=.\platform\windows.c # End Source File # Begin Source File diff --git a/platform/Makefile.am b/platform/Makefile.am index 0f039b5c..61b67e43 100644 --- a/platform/Makefile.am +++ b/platform/Makefile.am @@ -9,7 +9,7 @@ libplatform_la_SOURCES = \ else libplatform_la_SOURCES = \ unix.c \ - win32.c \ + windows.c \ posix.c \ os2.c endif @@ -18,7 +18,7 @@ endif EXTRA_DIST = \ skeleton.c \ macclassic.c \ - win32.c \ + windows.c \ pocketpc.c \ unix.c \ os2.c \ diff --git a/platform/unix.c b/platform/unix.c index 531500b1..bc04450c 100644 --- a/platform/unix.c +++ b/platform/unix.c @@ -10,7 +10,7 @@ # include #endif -/* BeOS uses beos.cpp and posix.c ... Cygwin and such use win32.c ... */ +/* BeOS uses beos.cpp and posix.c ... Cygwin and such use windows.c ... */ #if ((!defined __BEOS__) && (!defined WIN32)) #include diff --git a/platform/win32.c b/platform/windows.c similarity index 99% rename from platform/win32.c rename to platform/windows.c index dd988889..c94224db 100644 --- a/platform/win32.c +++ b/platform/windows.c @@ -1147,5 +1147,5 @@ void __PHYSFS_platformAllocatorFree(void *ptr) #endif -/* end of win32.c ... */ +/* end of windows.c ... */