mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 04:49:08 +08:00
9697f95b8f
This reverts commit 15d999759e
.
27 lines
751 B
C
27 lines
751 B
C
#ifndef ACL_MASTER_CONF_INCLUDE_H
|
|
#define ACL_MASTER_CONF_INCLUDE_H
|
|
|
|
#include "../stdlib/acl_define.h"
|
|
#include "../master/acl_master_type.h"
|
|
|
|
#ifndef ACL_CLIENT_ONLY
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
ACL_API void acl_app_conf_load(const char *pathname);
|
|
ACL_API void acl_app_conf_unload(void);
|
|
ACL_API void acl_get_app_conf_int_table(ACL_CONFIG_INT_TABLE *table);
|
|
ACL_API void acl_get_app_conf_int64_table(ACL_CONFIG_INT64_TABLE *table);
|
|
ACL_API void acl_get_app_conf_str_table(ACL_CONFIG_STR_TABLE *table);
|
|
ACL_API void acl_get_app_conf_bool_table(ACL_CONFIG_BOOL_TABLE *table);
|
|
ACL_API void acl_free_app_conf_str_table(ACL_CONFIG_STR_TABLE *table);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ACL_CLIENT_ONLY */
|
|
#endif
|