forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDtsSofInterfaceVersion.h
More file actions
45 lines (40 loc) · 1019 Bytes
/
DtsSofInterfaceVersion.h
File metadata and controls
45 lines (40 loc) · 1019 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-License-Identifier: BSD-3-Clause
//
// Copyright(c) 2021 Xperi. All rights reserved.
//
// Author: Mark Barton <mark.barton@xperi.com>
#ifndef __SOF_AUDIO_DTS_SOF_INTERFACE_VERSION_H__
#define __SOF_AUDIO_DTS_SOF_INTERFACE_VERSION_H__
#define DTS_SOF_INTERFACE_PRODUCT_NAME "DtsSofInterface"
#define DTS_SOF_INTERFACE_PRODUCT_VERSION_MAJOR 1
#define DTS_SOF_INTERFACE_PRODUCT_VERSION_MINOR 0
#define DTS_SOF_INTERFACE_PRODUCT_VERSION_PATCH 7
#define DTS_SOF_INTERFACE_PRODUCT_VERSION_BUILD 0
#define DTS_SOF_INTERFACE_PRODUCT_VERSION_EXTRA "Dev"
#if defined(__cplusplus)
extern "C" {
#endif
/** Version information for the library.
*/
typedef struct DtsSofInterfaceVersionInfo
{
/** Name of product.
*/
const char* product;
/** Major version number.
*/
int major;
/** Minor version number.
*/
int minor;
/** Patch number.
*/
int patch;
/** Build number.
*/
int build;
} DtsSofInterfaceVersionInfo;
#if defined(__cplusplus)
}
#endif
#endif // __SOF_AUDIO_DTS_SOF_INTERFACE_VERSION_H__