i define this file:
- Code: Select all Expand view
/****************************************************************************
MyTestFile.rc
produced by Borland Resource Workshop
*****************************************************************************/
#define __HARBOUR__
1 24 "\Work\XPStyle\WindowsXP.Manifest"
1 VERSIONINFO
FILEVERSION 7, 4, 3, 0
PRODUCTVERSION 7, 4, 3, 0
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "Author", "MyAuthorName\000"
VALUE "CompanyName", "MyCompanyName\000"
VALUE "FileDescription", "MyFileDescription\000"
VALUE "FileVersion", "7.4.3.0\000"
VALUE "InternalName", "MyInternalName\000"
VALUE "LegalCopyright", "\251 MyName 2004-2007\000"
VALUE "ProductName", "MyProduct\000"
VALUE "ProductVersion", "7.4.3.0\000"
VALUE "OriginalFilename", "MyFile.exe\000"
VALUE "PrivateBuild","\000"
VALUE "SpecialBuild","\000"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 1033, 1252
}
}
is possible to retrieve the value at runtime? how?
there are other values to insert?
where I can find documentation?