From 6fad7c1b3c2a9c9d76ad6112f28b0f1db4844952 Mon Sep 17 00:00:00 2001 From: jongfoster Date: Sat, 21 Jul 2001 17:53:41 +0000 Subject: [PATCH] Adding version information block. --- w32.rc | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/w32.rc b/w32.rc index b020da4d..03525f04 100644 --- a/w32.rc +++ b/w32.rc @@ -31,6 +31,9 @@ * * Revisions : * $Log: w32.rc,v $ + * Revision 1.10 2001/07/19 19:14:19 haroon + * - Removed all #ifdef PCRS. The .rc file extension had eluded Andreas. + * * Revision 1.9 2001/06/07 23:08:54 jongfoster * Forward and ACL edit options removed. * Config edit option renamed from "&Junkbuster" to "&Configuration". @@ -147,6 +150,47 @@ IDI_IDLE ICON DISCARDABLE "icons/idle.ico" #pragma code_page(1252) #endif /* def _WIN32 */ +/* + * File Version + */ +#ifndef _MAC + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_POINT,0 + PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_POINT,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "The ijbswa team - ijbswa.sourceforge.net\0" + VALUE "FileDescription", "JunkBuster\0" + VALUE "FileVersion", VERSION "\0" + VALUE "InternalName", "JunkBuster\0" + VALUE "LegalCopyright", "Distributed under the GNU GPL\0" + VALUE "OriginalFilename", "junkbuster.exe\0" + VALUE "ProductName", "JunkBuster\0" + VALUE "ProductVersion", VERSION "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif /* ndef _MAC */ + + /* * Menus */ @@ -302,6 +346,8 @@ STRINGTABLE DISCARDABLE BEGIN IDS_NEW_BLOCKER "Create rule for ""%s""..." END + + #endif /* def WIN_GUI_EDIT */ #endif /* English (U.S.) resources */ -- 2.39.2