2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
2018-09-19 00:35:45 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/td_json_client.h"
|
|
|
|
#include "td/telegram/td_log.h"
|
|
|
|
|
|
|
|
#include <emscripten.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
EMSCRIPTEN_KEEPALIVE void *td_create() {
|
|
|
|
return td_json_client_create();
|
|
|
|
}
|
|
|
|
EMSCRIPTEN_KEEPALIVE void td_send(void *client, const char *query) {
|
|
|
|
td_json_client_send(client, query);
|
|
|
|
}
|
|
|
|
EMSCRIPTEN_KEEPALIVE const char *td_receive(void *client) {
|
|
|
|
return td_json_client_receive(client, 0);
|
|
|
|
}
|
|
|
|
EMSCRIPTEN_KEEPALIVE const char *td_execute(void *client, const char *query) {
|
|
|
|
return td_json_client_execute(client, query);
|
|
|
|
}
|
|
|
|
EMSCRIPTEN_KEEPALIVE void td_destroy(void *client) {
|
|
|
|
td_json_client_destroy(client);
|
|
|
|
}
|
2018-09-18 15:43:16 +02:00
|
|
|
EMSCRIPTEN_KEEPALIVE double td_get_timeout() {
|
|
|
|
return td::ConcurrentScheduler::emscripten_get_main_timeout();
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
emscripten_exit_with_live_runtime();
|
|
|
|
return 0;
|
|
|
|
}
|