Files
simplex-chat/apps/ios/SimpleXChat/SimpleX.h

24 lines
607 B
C
Raw Normal View History

2022-01-22 17:54:22 +00:00
//
// SimpleX.h
// SimpleX
2022-01-22 17:54:22 +00:00
//
// Created by Evgeny on 30/05/2022.
// Copyright © 2022 SimpleX Chat. All rights reserved.
//
#ifndef SimpleX_h
#define SimpleX_h
#endif /* SimpleX_h */
2022-01-22 17:54:22 +00:00
extern void hs_init(int argc, char **argv[]);
2022-01-22 17:54:22 +00:00
typedef void* chat_ctrl;
2022-01-22 17:54:22 +00:00
// the last parameter is used to return the pointer to chat controller
extern char *chat_migrate_init(char *path, char *key, chat_ctrl *ctrl);
extern char *chat_send_cmd(chat_ctrl ctl, char *cmd);
extern char *chat_recv_msg(chat_ctrl ctl);
extern char *chat_recv_msg_wait(chat_ctrl ctl, int wait);
extern char *chat_parse_markdown(char *str);