config_info.h 427 B

123456789101112131415161718192021
  1. /*
  2. * config_info.h
  3. * Common code for pg_config output
  4. *
  5. * Copyright (c) 2016, PostgreSQL Global Development Group
  6. *
  7. * src/include/common/config_info.h
  8. */
  9. #ifndef COMMON_CONFIG_INFO_H
  10. #define COMMON_CONFIG_INFO_H
  11. typedef struct ConfigData
  12. {
  13. char *name;
  14. char *setting;
  15. } ConfigData;
  16. extern ConfigData *get_configdata(const char *my_exec_path,
  17. size_t *configdata_len);
  18. #endif /* COMMON_CONFIG_INFO_H */