-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed popup window titles and some modalitys.
- Loading branch information
1 parent
e7d625a
commit 6c7316c
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# if defined(UNDER_CE) | ||
# include <winbase.h> | ||
# else | ||
# include <winver.h> | ||
# endif | ||
|
||
IDI_ICON1 ICON DISCARDABLE "C:\\Projects\\v800_downloader\\src\\ui\\v800_downloader.ico" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 0,0,0,0 | ||
PRODUCTVERSION 0,0,0,0 | ||
FILEFLAGSMASK 0x3fL | ||
#ifdef _DEBUG | ||
FILEFLAGS VS_FF_DEBUG | ||
#else | ||
FILEFLAGS 0x0L | ||
#endif | ||
FILEOS VOS__WINDOWS32 | ||
FILETYPE VFT_DLL | ||
FILESUBTYPE 0x0L | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "CompanyName", "\0" | ||
VALUE "FileDescription", "\0" | ||
VALUE "FileVersion", "0.0.0.0\0" | ||
VALUE "LegalCopyright", "\0" | ||
VALUE "OriginalFilename", "v800_downloader.exe\0" | ||
VALUE "ProductName", "v800_downloader\0" | ||
VALUE "ProductVersion", "0.0.0.0\0" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0409, 1200 | ||
END | ||
END | ||
/* End of Version info */ | ||
|