rename dir 1
This commit is contained in:
78
PROGMGR2/resource.rc
Normal file
78
PROGMGR2/resource.rc
Normal file
@@ -0,0 +1,78 @@
|
||||
/* * * * * * * *\
|
||||
RESOURCE.RC -
|
||||
Copyright (c) 2024 Vortesys, Brady McDermott
|
||||
DESCRIPTION -
|
||||
This file contains Program Manager's resources.
|
||||
LICENSE INFORMATION -
|
||||
MIT License, see LICENSE.txt in the root folder
|
||||
\* * * * * * * */
|
||||
|
||||
/* Necessary Evil */
|
||||
#define APSTUDIO_HIDDEN_SYMBOLS
|
||||
#include <windows.h>
|
||||
#include "resource.h"
|
||||
#undef APSTUDIO_HIDDEN_SYMBOLS
|
||||
|
||||
/* Language-based Resources */
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
#pragma code_page(65001) // UTF-8
|
||||
#include "lang\res_en-US.rc" // English (US)
|
||||
#include "lang\dlg_en-US.rc" // English (US)
|
||||
|
||||
/* Icon Library */
|
||||
// Primary
|
||||
#ifdef NDEBUG
|
||||
IDI_PROGMGR ICON icons\progmgr.ico
|
||||
#else
|
||||
IDI_PROGMGR ICON icons\progmgrd.ico
|
||||
#endif
|
||||
IDI_PROGGRP ICON icons\pmgroup.ico
|
||||
IDI_PROGITM ICON icons\pmitem.ico
|
||||
IDI_COMMON ICON icons\common.ico
|
||||
IDI_PERSONAL ICON icons\personal.ico
|
||||
// Secondary
|
||||
// IDI_COMMS ICON icons\comms.ico
|
||||
// IDI_CONSOLE ICON icons\console.ico
|
||||
// IDI_DOCUMENT ICON icons\document.ico
|
||||
// IDI_SPREADSHEET ICON icons\spsheet.ico
|
||||
// Tertiary
|
||||
// IDI_SUPERMAN ICON icons\misc\superman.ico
|
||||
|
||||
/* Manifest */
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "progmgr.exe.manifest"
|
||||
|
||||
/* Version Information */
|
||||
#define APSTUDIO_HIDDEN_SYMBOLS
|
||||
#include "version.inc"
|
||||
#undef APSTUDIO_HIDDEN_SYMBOLS
|
||||
|
||||
// NOTE(u130b8): Example of using PROGMGR_GIT_HASH in the resource file
|
||||
#ifdef PROGMGR_GIT_HASH
|
||||
#undef VER_PRODUCTVERSION_STR
|
||||
#define VER_PRODUCTVERSION_STR "git-" PROGMGR_GIT_HASH
|
||||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION VER_FILEVERSION
|
||||
PRODUCTVERSION VER_PRODUCTVERSION
|
||||
FILEFLAGSMASK 0x3fL
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileDescription", VER_FILEDESCRIPTION_STR "\0"
|
||||
VALUE "FileVersion", VER_FILEVERSION_STR "\0"
|
||||
VALUE "InternalName", VER_INTERNALNAME_STR "\0"
|
||||
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR "\0"
|
||||
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR "\0"
|
||||
VALUE "ProductName", VER_PRODUCTNAME_STR
|
||||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR "\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 1033, 1200
|
||||
END
|
||||
END
|
||||
Reference in New Issue
Block a user