• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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};
15
16struct HdfConfigTestBar {
17    uint8_t term1;
18    const char* term4;
19    uint8_t term2;
20    uint8_t term3;
21};
22
23struct HdfConfigTestRoot {
24    const char* module;
25    struct HdfConfigTestFoo foo;
26    struct HdfConfigTestBar bar;
27};
28
29const struct HdfConfigTestRoot* HdfGetTestModuleConfigRoot(void);
30
31#endif // HCS_CONFIG_GOLDEN_HEADER_H
32