From 3e912c3c1b6d74f003d044559c8a5331d54356fb Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 1 Jan 2006 12:28:53 +0000 Subject: [PATCH] Added physfs.rc for Windows builds (thanks, Dennis!). --- CHANGELOG | 2 +- CREDITS | 3 +++ physfs.rc | 27 +++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 physfs.rc diff --git a/CHANGELOG b/CHANGELOG index ff017604..642c67b6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,7 +4,7 @@ 01012006 - Cleaned up overflow checks in platform memory allocators (thanks to Nicolas Lebedenco for pointing out the original issue with - long long literals). + long long literals). Added physfs.rc (thanks, Dennis!). 11282005 - Corrected docs on PHYSFS_setWriteDir(). 10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!). Patched archivers/wad.c to compile. diff --git a/CREDITS b/CREDITS index cdef5129..83f42fa7 100644 --- a/CREDITS +++ b/CREDITS @@ -91,6 +91,9 @@ General bug fixes: Bug fixes: Jörg Walter +Windows .rc file: + Dennis Schridde + Other stuff: Your name here! Patches go to icculus@clutteredmind.org ... diff --git a/physfs.rc b/physfs.rc new file mode 100644 index 00000000..0e038604 --- /dev/null +++ b/physfs.rc @@ -0,0 +1,27 @@ + +1 VERSIONINFO +FILEVERSION 1,0,1,0 +PRODUCTVERSION 1,0,1,0 +FILEOS 0x40004 +FILETYPE 0x2 +{ +BLOCK "StringFileInfo" +{ + BLOCK "040904B0" + { + VALUE "CompanyName", "" + VALUE "FileDescription", "PhysicsFS" + VALUE "FileVersion", "1, 0, 1, 0" + VALUE "InternalName", "PhysFS" + VALUE "LegalCopyright", "Copyright © 2006 Ryan C. Gordon" + VALUE "OriginalFilename", "phyfs.dll" + VALUE "ProductName", "PhysicsFS" + VALUE "ProductVersion", "1, 0, 1, 0" + } +} + +BLOCK "VarFileInfo" +{ + VALUE "Translation", 0x0409 0x04B0 +} +}