win32 standalone gui

This commit is contained in:
Jonathan Marler 2024-07-20 16:05:00 -06:00 committed by CJ van den Berg
parent 1ad6b8db3d
commit 1a595871dd
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
10 changed files with 1773 additions and 1 deletions

34
src/win32/flow.rc Normal file
View file

@ -0,0 +1,34 @@
#include "ResourceNames.h"
// LANG_NEUTRAL(0), SUBLANG_NEUTRAL(0)
LANGUAGE 0, 0
ID_ICON_FLOW ICON "flow.ico"
VS_VERSION_INFO VERSIONINFO
//FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,VERSION_COMMIT_HEIGHT
//PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,VERSION_COMMIT_HEIGHT
//FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
//FILEFLAGS VER_DBG
//FILEOS VOS_NT
//FILETYPE VFT_APP
//FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
//VALUE "CompanyName", "???"
//VALUE "FileDescription", "???"
//VALUE "FileVersion", VERSION
//VALUE "LegalCopyright", "(C) 2024 ???"
VALUE "OriginalFilename", "flow.exe"
VALUE "ProductName", "Flow Control"
//VALUE "ProductVersion", VERSION
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409,1200
END
END