neptools

Modding tools to Neptunia games
git clone https://git.neptards.moe/neptards/neptools.git
Log | Files | Refs | Submodules | README | LICENSE

stcm-editor.rc (1090B)


      1 #include <windows.h>
      2 #include "version.hpp"
      3 
      4 0 ICON "icon.ico"
      5 
      6 1 VERSIONINFO
      7 FILEVERSION NEPTOOLS_RC_VERSION
      8 PRODUCTVERSION NEPTOOLS_RC_VERSION
      9 FILEOS VOS_NT_WINDOWS32
     10 FILETYPE VFT_APP
     11 {
     12     BLOCK "StringFileInfo"
     13     {
     14         BLOCK "040904E4"
     15         {
     16             VALUE "ProductName", "stcm-editor"
     17             VALUE "ProductVersion", NEPTOOLS_VERSION
     18             VALUE "FileDescription", "NepTools stcm-editor"
     19             VALUE "FileVersion", NEPTOOLS_VERSION
     20             VALUE "InternalName", "stcm-editor"
     21             VALUE "OriginalFileName", "stcm-editor.exe"
     22         }
     23     }
     24     BLOCK "VarFileInfo"
     25     {
     26         VALUE "Translation", 0x409, 1200
     27     }
     28 }
     29 
     30 CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST
     31 {
     32     "<?xml version='1.0' encoding='utf-8' standalone='yes'?>"
     33     "<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>"
     34     "<trustInfo>"
     35       "<security>"
     36         "<requestedPrivileges>"
     37           "<requestedExecutionLevel level='asInvoker' uiAccess='false'/>"
     38         "</requestedPrivileges>"
     39       "</security>"
     40     "</trustInfo>"
     41   "</assembly>"
     42 }