mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-28 21:26:31 +00:00
6d2d7fbf50
* Dev: add simple C binding for iOS and Android projects * System: add ci script
18 lines
275 B
C
18 lines
275 B
C
// Public API: Protocol.h
|
|
|
|
#ifndef protocol_h
|
|
#define protocol_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { // only need to export C interface if
|
|
// used by C++ source code
|
|
#endif
|
|
|
|
const char* executeCommand(const char* command);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* protocol_h */
|