17 lines
362 B
C
17 lines
362 B
C
|
//
|
||
|
// Created by xajhu on 2021/7/15 0015.
|
||
|
//
|
||
|
|
||
|
#ifndef DAEMON_AGENT_PROJECT_AGENT_INCLUDE_CMDLINE_H
|
||
|
#define DAEMON_AGENT_PROJECT_AGENT_INCLUDE_CMDLINE_H
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
int mq_cmd_run(const char *pSvr, const char *pCmd);
|
||
|
int menu_run(int argc, char **argv);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif//DAEMON_AGENT_PROJECT_AGENT_INCLUDE_CMDLINE_H
|