1/* 2 * This is an automatically generated HDF config file. Do not modify it manually. 3 */ 4 5#ifndef HCS_CONFIG_GOLDEN_HEADER_H 6#define HCS_CONFIG_GOLDEN_HEADER_H 7 8#include <stdint.h> 9 10struct HdfConfigTestAttr { 11 uint8_t term4; 12}; 13 14struct HdfConfigTestFooBase { 15 uint8_t term1; 16 uint8_t term2; 17 const uint8_t* term3; 18 uint32_t term3Size; 19 struct HdfConfigTestAttr attr; 20}; 21 22struct HdfConfigTestFoo1 { 23 const char* term1; 24 const char* bar2_2[1]; 25 const struct HdfConfigTestFoo* foo; 26 const struct HdfConfigTestBar* bar; 27}; 28 29struct HdfConfigTestFoo { 30 struct HdfConfigTestFoo1 foo1; 31 uint8_t array_oct[4]; 32}; 33 34struct HdfConfigTestBar { 35}; 36 37struct HdfConfigTestRoot { 38 const char* module; 39 const struct HdfConfigTestFooBase* fooBase; 40 uint16_t fooBaseSize; 41 struct HdfConfigTestFoo foo; 42 struct HdfConfigTestBar bar; 43 uint8_t t; 44}; 45 46const struct HdfConfigTestRoot* HdfGetTestModuleConfigRoot(void); 47 48#endif // HCS_CONFIG_GOLDEN_HEADER_H 49