tox-weechat/src/tox-weechat-friend-requests.h

40 lines
1.1 KiB
C
Raw Normal View History

2014-09-02 16:47:08 +00:00
#ifndef TOX_WEECHAT_FRIEND_REQUESTS_H
#define TOX_WEECHAT_FRIEND_REQUESTS_H
#include <stdint.h>
#include <tox/tox.h>
2014-09-07 01:04:42 +00:00
struct t_tox_weechat_friend_request
2014-09-02 16:47:08 +00:00
{
// public address of friend request
uint8_t address[TOX_CLIENT_ID_SIZE];
// message sent with request
char *message;
2014-09-07 01:04:42 +00:00
struct t_tox_weechat_identity *identity;
struct t_tox_weechat_friend_request *next_request;
struct t_tox_weechat_friend_request *prev_request;
2014-09-02 16:47:08 +00:00
};
2014-09-07 01:04:42 +00:00
void
tox_weechat_friend_request_add(struct t_tox_weechat_identity *identity,
struct t_tox_weechat_friend_request *request);
void
tox_weechat_accept_friend_request(struct t_tox_weechat_friend_request *request);
void
tox_weechat_decline_friend_request(struct t_tox_weechat_friend_request *request);
2014-09-02 16:47:08 +00:00
2014-09-07 01:04:42 +00:00
struct t_tox_weechat_friend_request *
tox_weechat_friend_request_with_num(struct t_tox_weechat_identity *identity,
unsigned int num);
2014-09-02 16:47:08 +00:00
2014-09-07 01:04:42 +00:00
void
tox_weechat_friend_requests_free(struct t_tox_weechat_identity *identity);
2014-09-02 16:47:08 +00:00
#endif // TOX_WEECHAT_FRIEND_REQUESTS_H