From f1f8a71bd4df7f239e28a9625b82ee02428c3f3f Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sat, 3 Jan 2015 08:12:27 +0000 Subject: Tox: work commit - removed *.lib and lib generator - disabled profile encryption and import - loading tox profile on connection - project reordering - http proxy support git-svn-id: http://svn.miranda-ng.org/main/trunk@11730 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Tox/src/api_main.cpp | 252 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 252 insertions(+) create mode 100644 protocols/Tox/src/api_main.cpp (limited to 'protocols/Tox/src/api_main.cpp') diff --git a/protocols/Tox/src/api_main.cpp b/protocols/Tox/src/api_main.cpp new file mode 100644 index 0000000000..fc23165d44 --- /dev/null +++ b/protocols/Tox/src/api_main.cpp @@ -0,0 +1,252 @@ +#include "common.h" + +/* MAIN FUNCTIONS */ + +Tox *tox_new(Tox_Options *options) +{ + return CreateFunction(__FUNCTION__)(options); +} + +void tox_kill(Tox *tox) +{ + CreateFunction(__FUNCTION__)(tox); + tox = NULL; +} + +void tox_get_address(const Tox *tox, uint8_t *address) +{ + CreateFunction(__FUNCTION__)(tox, address); +} + +int32_t tox_add_friend(Tox *tox,const uint8_t *address, const uint8_t *data, uint16_t length) +{ + return CreateFunction(__FUNCTION__)(tox, address, data, length); +} + +int32_t tox_add_friend_norequest(Tox *tox, const uint8_t *client_id) +{ + return CreateFunction(__FUNCTION__)(tox, client_id); +} + +int32_t tox_get_friend_number(const Tox *tox, const uint8_t *client_id) +{ + return CreateFunction(__FUNCTION__)(tox, client_id); +} + +int tox_get_client_id(const Tox *tox, int32_t friendnumber, uint8_t *client_id) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, client_id); +} + +int tox_del_friend(Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +int tox_get_friend_connection_status(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +int tox_friend_exists(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +uint32_t tox_send_message(Tox *tox, int32_t friendnumber, const uint8_t *message, uint32_t length) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, message, length); +} + +uint32_t tox_send_action(Tox *tox, int32_t friendnumber, const uint8_t *action, uint32_t length) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, action, length); +} + +int tox_set_name(Tox *tox, const uint8_t *name, uint16_t length) +{ + return CreateFunction(__FUNCTION__ )(tox, name, length); +} + +uint16_t tox_get_self_name(const Tox *tox, uint8_t *name) +{ + return CreateFunction(__FUNCTION__)(tox, name); +} + +int tox_get_name(const Tox *tox, int32_t friendnumber, uint8_t *name) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, name); +} + +int tox_get_name_size(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +int tox_get_self_name_size(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +int tox_set_status_message(Tox *tox, const uint8_t *status, uint16_t length) +{ + return CreateFunction(__FUNCTION__)(tox, status, length); +} + +int tox_set_user_status(Tox *tox, uint8_t userstatus) +{ + return CreateFunction(__FUNCTION__)(tox, userstatus); +} + +int tox_get_status_message_size(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +int tox_get_self_status_message_size(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +int tox_get_status_message(const Tox *tox, int32_t friendnumber, uint8_t *buf, uint32_t maxlen) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, buf, maxlen); +} + +int tox_get_self_status_message(const Tox *tox, uint8_t *buf, uint32_t maxlen) +{ + return CreateFunction(__FUNCTION__)(tox, buf, maxlen); +} + +uint8_t tox_get_user_status(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +uint8_t tox_get_self_user_status(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +uint64_t tox_get_last_online(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +int tox_set_user_is_typing(Tox *tox, int32_t friendnumber, uint8_t is_typing) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber, is_typing); +} + +uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber) +{ + return CreateFunction(__FUNCTION__)(tox, friendnumber); +} + +uint32_t tox_count_friendlist(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +uint32_t tox_get_num_online_friends(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +uint32_t tox_get_friendlist(const Tox *tox, int32_t *out_list, uint32_t list_size) +{ + return CreateFunction(__FUNCTION__)(tox, out_list, list_size); +} + +void tox_callback_friend_request(Tox *tox, void(*function)(Tox *tox, const uint8_t *, const uint8_t *, uint16_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_friend_message(Tox *tox, void(*function)(Tox *tox, int32_t, const uint8_t *, uint16_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_friend_action(Tox *tox, void(*function)(Tox *tox, int32_t, const uint8_t *, uint16_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_name_change(Tox *tox, void(*function)(Tox *tox, int32_t, const uint8_t *, uint16_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_status_message(Tox *tox, void(*function)(Tox *tox, int32_t, const uint8_t *, uint16_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_user_status(Tox *tox, void(*function)(Tox *tox, int32_t, uint8_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_typing_change(Tox *tox, void(*function)(Tox *tox, int32_t, uint8_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_read_receipt(Tox *tox, void(*function)(Tox *tox, int32_t, uint32_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +void tox_callback_connection_status(Tox *tox, void(*function)(Tox *tox, int32_t, uint8_t, void *), void *userdata) +{ + CreateFunction(__FUNCTION__)(tox, function, userdata); +} + +/* SAVING AND LOADING FUNCTIONS */ + +uint32_t tox_size(const Tox *tox) +{ + return CreateFunction(__FUNCTION__)(tox); +} + +void tox_save(const Tox *tox, uint8_t *data) +{ + CreateFunction(__FUNCTION__)(tox, data); +} + +int tox_load(Tox *tox, const uint8_t *data, uint32_t length) +{ + return CreateFunction(__FUNCTION__)(tox, data, length); +} + +/* ADVANCED FUNCTIONS (If you don't know what they do you can safely ignore them.) */ +/* +uint32_t tox_get_nospam(const Tox *tox) +{ +} + +void tox_set_nospam(Tox *tox, uint32_t nospam) +{ +} + +void tox_get_keys(Tox *tox, uint8_t *public_key, uint8_t *secret_key) +{ +} + +int tox_lossy_packet_registerhandler(Tox *tox, int32_t friendnumber, uint8_t byte, int(*packet_handler_callback)(Tox *tox, int32_t friendnumber, const uint8_t *data, uint32_t len, void *object), void *object) +{ +} + +int tox_send_lossy_packet(const Tox *tox, int32_t friendnumber, const uint8_t *data, uint32_t length) +{ +} + +int tox_lossless_packet_registerhandler(Tox *tox, int32_t friendnumber, uint8_t byte, int(*packet_handler_callback)(Tox *tox, int32_t friendnumber, const uint8_t *data, uint32_t len, void *object), void *object) +{ +} + +int tox_send_lossless_packet(const Tox *tox, int32_t friendnumber, const uint8_t *data, uint32_t length) +{ +} +*/ \ No newline at end of file -- cgit v1.2.3