forked from microsoft/cpp_client_telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.hpp.template
More file actions
29 lines (23 loc) · 877 Bytes
/
Copy pathVersion.hpp.template
File metadata and controls
29 lines (23 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
#ifndef MAT_VERSION_HPP
#define MAT_VERSION_HPP
// WARNING: DO NOT MODIFY THIS FILE!
// This file has been automatically generated, manual changes will be lost.
#define BUILD_VERSION_STR "@BUILD_VERSION_MAJOR@.@BUILD_VERSION_MINOR@.@BUILD_VERSION_PATCH@.@BUILD_NUMBER@"
#define BUILD_VERSION @BUILD_VERSION_MAJOR@,@BUILD_VERSION_MINOR@,@BUILD_VERSION_PATCH@,@BUILD_NUMBER@
#ifndef RESOURCE_COMPILER_INVOKED
#include "ctmacros.hpp"
#include <stdint.h>
namespace MAT_NS_BEGIN {
uint64_t const Version =
((uint64_t)@BUILD_VERSION_MAJOR@ << 48) |
((uint64_t)@BUILD_VERSION_MINOR@ << 32) |
((uint64_t)@BUILD_VERSION_PATCH@ << 16) |
((uint64_t)@BUILD_NUMBER@);
} MAT_NS_END
namespace PAL_NS_BEGIN { } PAL_NS_END
#endif // RESOURCE_COMPILER_INVOKED
#endif