From 41a5dbf4d9d937b5fe9df3c700e8c43c82f2343c Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 16 Dec 2017 20:26:23 +0300 Subject: Tox: (#1068) - moved to self compiled libtox - removed unused code (multimedia & chatrooms) - removed unneeded files & tools - version bump --- protocols/Tox/src/api_friends.cpp | 135 -------------------------------------- 1 file changed, 135 deletions(-) delete mode 100644 protocols/Tox/src/api_friends.cpp (limited to 'protocols/Tox/src/api_friends.cpp') diff --git a/protocols/Tox/src/api_friends.cpp b/protocols/Tox/src/api_friends.cpp deleted file mode 100644 index caa133feb7..0000000000 --- a/protocols/Tox/src/api_friends.cpp +++ /dev/null @@ -1,135 +0,0 @@ -#include "stdafx.h" - -/* FRIEND FUNCTIONS */ - -uint32_t tox_friend_add(Tox *tox, const uint8_t *address, const uint8_t *message, size_t length, TOX_ERR_FRIEND_ADD *error) -{ - return CreateFunction(__FUNCTION__)(tox, address, message, length, error); -} - -uint32_t tox_friend_add_norequest(Tox *tox, const uint8_t *public_key, TOX_ERR_FRIEND_ADD *error) -{ - return CreateFunction(__FUNCTION__)(tox, public_key, error); -} - -bool tox_friend_delete(Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_DELETE *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -uint32_t tox_friend_by_public_key(const Tox *tox, const uint8_t *public_key, TOX_ERR_FRIEND_BY_PUBLIC_KEY *error) -{ - return CreateFunction(__FUNCTION__)(tox, public_key, error); -} - -int tox_friend_exists(const Tox *tox, int32_t friendnumber) -{ - return CreateFunction(__FUNCTION__)(tox, friendnumber); -} - -size_t tox_self_get_friend_list_size(const Tox *tox) -{ - return CreateFunction(__FUNCTION__)(tox); -} - -void tox_self_get_friend_list(const Tox *tox, uint32_t *list) -{ - CreateFunction(__FUNCTION__)(tox, list); -} - -bool tox_friend_get_public_key(const Tox *tox, uint32_t friend_number, uint8_t *public_key, TOX_ERR_FRIEND_GET_PUBLIC_KEY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, public_key, error); -} - -uint64_t tox_friend_get_last_online(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_GET_LAST_ONLINE *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -size_t tox_friend_get_name_size(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -bool tox_friend_get_name(const Tox *tox, uint32_t friend_number, uint8_t *name, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, name, error); -} - -void tox_callback_friend_name(Tox *tox, tox_friend_name_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -size_t tox_friend_get_status_message_size(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -bool tox_friend_get_status_message(const Tox *tox, uint32_t friend_number, uint8_t *status_message, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, status_message, error); -} - -void tox_callback_friend_status_message(Tox *tox, tox_friend_status_message_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -TOX_USER_STATUS tox_friend_get_status(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -void tox_callback_friend_status(Tox *tox, tox_friend_status_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -TOX_CONNECTION tox_friend_get_connection_status(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -void tox_callback_friend_connection_status(Tox *tox, tox_friend_connection_status_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -bool tox_friend_get_typing(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, error); -} - -void tox_callback_friend_typing(Tox *tox, tox_friend_typing_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -/* */ - -bool tox_self_set_typing(Tox *tox, uint32_t friend_number, bool is_typing, TOX_ERR_SET_TYPING *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, is_typing, error); -} - -uint32_t tox_friend_send_message(Tox *tox, uint32_t friend_number, TOX_MESSAGE_TYPE type, const uint8_t *message, size_t length, TOX_ERR_FRIEND_SEND_MESSAGE *error) -{ - return CreateFunction(__FUNCTION__)(tox, friend_number, type, message, length, error); -} - -void tox_callback_friend_read_receipt(Tox *tox, tox_friend_read_receipt_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -void tox_callback_friend_request(Tox *tox, tox_friend_request_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} - -void tox_callback_friend_message(Tox *tox, tox_friend_message_cb *function) -{ - CreateFunction(__FUNCTION__)(tox, function); -} \ No newline at end of file -- cgit v1.2.3