22 lines
496 B
C
Executable File
22 lines
496 B
C
Executable File
/*************************************************************
|
|
*
|
|
* This is a part of the Agora Media Framework Library.
|
|
* Copyright (C) 2021 Agora IO
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************/
|
|
#ifndef __AGORA_CLI_H__
|
|
#define __AGORA_CLI_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* API */
|
|
void cli_beken_rtc_debug_cmd(char *pcWriteBuffer, int xWriteBufferLen, int argc, char **argv);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __AGORA_CLI_H__ */
|