mirror of
https://github.com/koho/frpmgr.git
synced 2025-10-20 16:03:47 +08:00
* Rewrite custom actions in C * Add language setting file * Improve setup * Improve build script * Skip directory selection on upgrade * Fix dll symbols error on x86 * Validate install path * Hide language selection dialog on upgrade * Improve macros * Add multi-language support to the setup * Remove old files
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
#include <windows.h>
|
|
|
|
#pragma code_page(65001) // UTF-8
|
|
|
|
#define STRINGIZE(x) #x
|
|
#define EXPAND(x) STRINGIZE(x)
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VERSION_ARRAY
|
|
PRODUCTVERSION VERSION_ARRAY
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS 0x0
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "FRP Manager Project"
|
|
VALUE "FileDescription", "FRP Manager Setup Custom Actions"
|
|
VALUE "FileVersion", EXPAND(VERSION_STR)
|
|
VALUE "InternalName", "frpmgr-actions"
|
|
VALUE "LegalCopyright", "Copyright © FRP Manager Project"
|
|
VALUE "OriginalFilename", "actions.dll"
|
|
VALUE "ProductName", "FRP Manager"
|
|
VALUE "ProductVersion", EXPAND(VERSION_STR)
|
|
VALUE "Comments", "https://github.com/koho/frpmgr"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST manifest.xml
|