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 HdfConfigTestFoo { 11 uint8_t term1[2]; 12 uint8_t term[2]; 13}; 14 15struct HdfConfigTestBar { 16 uint8_t term1; 17 const char* term4; 18}; 19 20struct HdfConfigTestRoot { 21 const char* module; 22 struct HdfConfigTestFoo foo; 23 struct HdfConfigTestBar bar; 24}; 25 26const struct HdfConfigTestRoot* HdfGetTestModuleConfigRoot(void); 27 28#endif // HCS_CONFIG_GOLDEN_HEADER_H 29