2022-05-10 06:43:27 +00:00
|
|
|
//
|
|
|
|
// Created by xajhu on 2021/7/5 0005.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef DAEMON_AGENT_PROJECT_AGENT_INIT_INIT_H
|
|
|
|
#define DAEMON_AGENT_PROJECT_AGENT_INIT_INIT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int user_init(const char *pAppCfgFile, const char *pCfgDirectory, const char *pKey, int logLevel);
|
|
|
|
void user_uninit();
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-12-02 06:42:37 +00:00
|
|
|
#endif //DAEMON_AGENT_PROJECT_AGENT_INIT_INIT_H
|