17 lines
398 B
C
17 lines
398 B
C
/* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
Licensed under the MIT License. */
|
|
|
|
#ifndef K4AVERSION_H
|
|
#define K4AVERSION_H
|
|
|
|
#define K4A_VERSION_MAJOR 1
|
|
#define K4A_VERSION_MINOR 4
|
|
#define K4A_VERSION_PATCH 0
|
|
#define K4A_VERSION_PRERELEASE "private"
|
|
#define K4A_VERSION_BUILD_METADATA ""
|
|
|
|
#define K4A_VERSION_STR "1.4.0-private"
|
|
|
|
#endif
|
|
|