Created
July 23, 2021 22:43
-
-
Save SolomonSklash/d3b91c3f77c4e79d2e3c04136241cc22 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define APSTUDIO_READONLY_SYMBOLS | |
#include "winres.h" | |
VS_VERSION_INFO VERSIONINFO | |
FILEVERSION 1,3,3,4 | |
PRODUCTVERSION 1,3,3,1 | |
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", "Acme Corp" /* This field doesn't seem to show up in theGUI Properties pane */ | |
VALUE "FileDescription", "sweet file of mine" | |
VALUE "FileVersion", "6.6.6" /* This seems to be overwritten by the FILEVERSION field above */ | |
VALUE "InternalName", "legitfile.exe" | |
VALUE "LegalCopyright", "Copyright (C) 1999" | |
VALUE "OriginalFilename", "old file name" | |
VALUE "ProductName", "my app" | |
VALUE "ProductVersion", "6.6.6.6" | |
END | |
END | |
BLOCK "VarFileInfo" | |
BEGIN | |
VALUE "Translation", 0x409, 1200 | |
END | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment