22 lines
708 B
C
22 lines
708 B
C
#pragma once
|
|
|
|
#define VERSION_MAJOR_MINOR_STR "1.0"
|
|
#define VERSION_MAJOR_MINOR_PATCH_STR "1.0.0"
|
|
#define VERSION_FULL_STR "1.0.0.0"
|
|
#define VERSION_RESOURCE 1, 0, 0, 0
|
|
#define VERSION_RESOURCE_STR VERSION_FULL_STR "\0"
|
|
|
|
/*
|
|
* These properties are part of VarFileInfo.
|
|
* For more information, please see:
|
|
* https://learn.microsoft.com/en-us/windows/win32/menurc/varfileinfo-block
|
|
*/
|
|
#define PRODUCT_LANGUAGE 0x0409 // en-US
|
|
#define PRODUCT_CHARSET 1200 // Unicode
|
|
|
|
#define APP_ICON "aya-chromium-branded.ico"
|
|
|
|
#define APP_NAME "Aya.WebHelper\0"
|
|
#define APP_DESCRIPTION "Aya Web Helper\0"
|
|
#define APP_ORGANIZATION "Aya Project\0"
|
|
#define APP_COPYRIGHT "This program is licensed under the MIT License.\0" |