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