mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
cc05b877a2
first commit acl to github
22 lines
562 B
C
22 lines
562 B
C
#ifndef __ACL_MASTER_CONF_INCLUDE_H__
|
|
#define __ACL_MASTER_CONF_INCLUDE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stdlib/acl_define.h"
|
|
#include "master/acl_master_type.h"
|
|
|
|
ACL_API void acl_app_conf_load(const char *pathname);
|
|
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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|