-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
103 additions
and
4 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
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,12 @@ | ||
// | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
// | ||
|
||
#include <windows.h> | ||
|
||
#define VER_FILETYPE VFT_APP | ||
#define VER_FILESUBTYPE VFT2_UNKNOWN | ||
#define VER_ORIGINALFILENAME_STR "quicreach.exe" | ||
|
||
#include "quicreach.ver" |
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,77 @@ | ||
// | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
// | ||
|
||
#ifndef VER_MAJOR | ||
#define VER_MAJOR 1 | ||
#endif | ||
|
||
#ifndef VER_MINOR | ||
#define VER_MINOR 2 | ||
#endif | ||
|
||
#ifndef VER_PATCH | ||
#define VER_PATCH 0 | ||
#endif | ||
|
||
#ifndef VER_BUILD_ID | ||
#define VER_BUILD_ID 0 | ||
#endif | ||
|
||
#ifndef VER_GIT_HASH | ||
#define VER_GIT_HASH_STR "Unknown" | ||
#else | ||
#define STR_HELPER_GIT_VER(x) #x | ||
#define STR_GIT_VER(x) STR_HELPER_GIT_VER(x) | ||
#define VER_GIT_HASH_STR STR_GIT_VER(VER_GIT_HASH) | ||
#endif | ||
|
||
#define STR_HELPER(x) #x | ||
#define STR(x) STR_HELPER(x) | ||
|
||
#define QUICREACH_VERSION STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD_ID) | ||
|
||
#ifndef QUICREACH_VERSION_ONLY | ||
|
||
#define VER_COMPANYNAME_STR "Microsoft Corporation" | ||
#define VER_FILEDESCRIPTION_STR "Microsoft\256 QUIC Library" | ||
#define VER_INTERNALNAME_STR "quicreach" | ||
#define VER_LEGALCOPYRIGHT_STR "\251 Microsoft Corporation. All rights reserved." | ||
#define VER_PRODUCTNAME_STR "Microsoft\256 QUIC" | ||
|
||
#define VER_FILEVERSION VER_MAJOR,VER_MINOR,VER_PATCH,0 | ||
#define VER_FILEVERSION_STR QUICREACH_VERSION "\0" | ||
#define VER_PRODUCTVERSION_STR QUICREACH_VERSION "\0" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
FILEFLAGS 0 | ||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VER_FILETYPE | ||
FILESUBTYPE VER_FILESUBTYPE | ||
|
||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904B0" | ||
BEGIN | ||
VALUE "CompanyName", VER_COMPANYNAME_STR | ||
VALUE "FileDescription", VER_FILEDESCRIPTION_STR | ||
VALUE "FileVersion", VER_FILEVERSION_STR | ||
VALUE "InternalName", VER_INTERNALNAME_STR | ||
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR | ||
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR | ||
VALUE "ProductName", VER_PRODUCTNAME_STR | ||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0409, 0x04B0 | ||
END | ||
END | ||
|
||
#endif // QUICREACH_VERSION_ONLY |