conf.hpp 399 B

12345678910111213
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _CONF_HPP_
  4. #define _CONF_HPP_
  5. #include "cbasetypes.hpp"
  6. #include "../../3rdparty/libconfig/libconfig.h"
  7. int conf_read_file(config_t *config, const char *config_filename);
  8. int config_setting_copy(config_setting_t *parent, const config_setting_t *src);
  9. #endif // _CONF_HPP_