17 lines
374 B
C
17 lines
374 B
C
|
//
|
||
|
// 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
|
||
|
#endif//DAEMON_AGENT_PROJECT_AGENT_INIT_INIT_H
|