Files
Andriy Druk 6d2d7fbf50 Add simple C binding for iOS and Android projects (#120)
* Dev: add simple C binding for iOS and Android projects

* System: add ci script
2021-11-04 07:52:38 +00:00

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 */