1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
|
| #ifndef __AMERGE_UAPI_HEAD_H__
| #define __AMERGE_UAPI_HEAD_H__
|
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| typedef struct uapiMergeCurrCtlData_s
| {
| // M4_NUMBER_DESC("Envlv", "f32", M4_RANGE(0,8), "0", M4_DIGIT(6))
| float Envlv;
| // M4_NUMBER_DESC("MoveCoef", "f32", M4_RANGE(0,8), "0", M4_DIGIT(6))
| float MoveCoef;
| } uapiMergeCurrCtlData_t;
|
| #ifdef __cplusplus
| }
| #endif
|
| #endif /*__AMERGE_UAPI_HEAD_H__*/
|
|