diff options
author | marha <marha@users.sourceforge.net> | 2009-12-22 18:34:14 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-12-22 18:34:14 +0000 |
commit | 1e723abc27bdc2ad675bce79467a7308c2966861 (patch) | |
tree | a04f4d5cf04567351c85d43e720a3b762322d106 /mesalib/src/mesa/drivers/windows/fx | |
parent | b729d9e1cc1c60e415da24143cabcbaccb525ed7 (diff) | |
download | vcxsrv-1e723abc27bdc2ad675bce79467a7308c2966861.tar.gz vcxsrv-1e723abc27bdc2ad675bce79467a7308c2966861.tar.bz2 vcxsrv-1e723abc27bdc2ad675bce79467a7308c2966861.zip |
Forgotten files in previous commit
Diffstat (limited to 'mesalib/src/mesa/drivers/windows/fx')
-rw-r--r-- | mesalib/src/mesa/drivers/windows/fx/fx.rc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mesalib/src/mesa/drivers/windows/fx/fx.rc b/mesalib/src/mesa/drivers/windows/fx/fx.rc new file mode 100644 index 000000000..f920b8768 --- /dev/null +++ b/mesalib/src/mesa/drivers/windows/fx/fx.rc @@ -0,0 +1,39 @@ +#include <windows.h> + +#define PRODNAME "Mesa 6.x" +#define CONTACTSTR "http://www.mesa3d.org" +#define HWSTR "3dfx Voodoo Graphics, Voodoo Rush, Voodoo^2, Voodoo Banshee, Velocity 100/200, Voodoo3, Voodoo4, Voodoo5" +#define COPYRIGHTSTR "Copyright \251 Brian E. Paul" + +#define VERSIONSTR "6.3.0.1" +#define MANVERSION 6 +#define MANREVISION 3 +#define BUILD_NUMBER 1 + +VS_VERSION_INFO VERSIONINFO + FILEVERSION MANVERSION, MANREVISION, 0, BUILD_NUMBER + PRODUCTVERSION MANVERSION, MANREVISION, 0, BUILD_NUMBER + FILEFLAGSMASK 0x0030003FL + + FILEOS VOS_DOS_WINDOWS32 + FILETYPE VFT_DRV + FILESUBTYPE VFT2_DRV_INSTALLABLE +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "FileDescription", PRODNAME + VALUE "FileVersion", VERSIONSTR + VALUE "LegalCopyright", COPYRIGHTSTR + VALUE "ProductName", PRODNAME + VALUE "Graphics Subsystem", HWSTR + VALUE "Contact", CONTACTSTR + END + END + BLOCK "VarFileInfo" + BEGIN + /* the following line should be extended for localized versions */ + VALUE "Translation", 0x409, 1252 + END +END |