Monado OpenXR Runtime
u_git_tag.h
Go to the documentation of this file.
1 // Copyright 2020, Collabora, Ltd.
2 // SPDX-License-Identifier: BSL-1.0
3 /*!
4  * @file
5  * @brief Holds the git hash of Monado.
6  * @author Jakob Bornecrantz <jakob@collabora.com>
7  * @ingroup aux_util
8  */
9 
10 #pragma once
11 
12 #include <stdint.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 
19 extern const char u_git_tag[];
20 extern const uint16_t u_version_major;
21 extern const uint16_t u_version_minor;
22 extern const uint16_t u_version_patch;
23 extern const char u_runtime_description[];
24 
25 
26 #ifdef __cplusplus
27 }
28 #endif