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