Skip to content

Commit

Permalink
Renamed win32.c to windows.c (since it would be used for Win64, too.)
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 8, 2007
1 parent 42e21ff commit f6790ee
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Expand Up @@ -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!).
Expand Down
1 change: 0 additions & 1 deletion TODO
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion physfs.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion physfs.vcproj
Expand Up @@ -209,7 +209,7 @@
RelativePath=".\archivers\wad.c">
</File>
<File
RelativePath=".\platform\win32.c">
RelativePath=".\platform\windows.c">
</File>
<File
RelativePath=".\archivers\zip.c">
Expand Down
2 changes: 1 addition & 1 deletion physfs_static.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions platform/Makefile.am
Expand Up @@ -9,7 +9,7 @@ libplatform_la_SOURCES = \
else
libplatform_la_SOURCES = \
unix.c \
win32.c \
windows.c \
posix.c \
os2.c
endif
Expand All @@ -18,7 +18,7 @@ endif
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
windows.c \
pocketpc.c \
unix.c \
os2.c \
Expand Down
2 changes: 1 addition & 1 deletion platform/unix.c
Expand Up @@ -10,7 +10,7 @@
# include <config.h>
#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 <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion platform/win32.c → platform/windows.c
Expand Up @@ -1147,5 +1147,5 @@ void __PHYSFS_platformAllocatorFree(void *ptr)

#endif

/* end of win32.c ... */
/* end of windows.c ... */

0 comments on commit f6790ee

Please sign in to comment.