1# OH_Huks_ParamSet
2
3
4## Overview
5
6Defines the struct of a parameter set.
7
8**Since**: 9
9
10**Related module**: [HuksTypeApi](_huks_type_api.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| uint32_t [paramSetSize](#paramsetsize) | Memory size of the parameter set. |
21| uint32_t [paramsCnt](#paramscnt) | Number of parameters in the parameter set. |
22| struct [OH_Huks_Param](_o_h___huks___param.md) [params](#params) [] | Array of parameters. |
23
24
25## Member Variable Description
26
27
28### params[]
29
30```
31struct OH_Huks_Param OH_Huks_ParamSet::params[]
32```
33**Description**
34
35Array of parameters.
36
37
38### paramsCnt
39
40```
41uint32_t OH_Huks_ParamSet::paramsCnt
42```
43**Description**
44
45Number of parameters in the parameter set.
46
47
48### paramSetSize
49
50```
51uint32_t OH_Huks_ParamSet::paramSetSize
52```
53**Description**
54
55Memory size of the parameter set.