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

47 lines
1.3 KiB
C
Raw Normal View History

2014-09-02 18:47:08 +02:00
#ifndef TOX_WEECHAT_FRIEND_REQUESTS_H
#define TOX_WEECHAT_FRIEND_REQUESTS_H
#include <stdint.h>
#include <tox/tox.h>
2014-09-07 03:04:42 +02:00
struct t_tox_weechat_friend_request
2014-09-02 18:47:08 +02:00
{
// public address of friend request
uint8_t address[TOX_CLIENT_ID_SIZE];
// message sent with request
char *message;
2014-09-07 03:04:42 +02: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 18:47:08 +02:00
};
2014-09-07 03:04:42 +02:00
void
2014-09-18 01:01:36 +02:00
tox_weechat_friend_request_init_identity(struct t_tox_weechat_identity *identity);
void
tox_weechat_friend_request_new(struct t_tox_weechat_identity *identity,
const uint8_t *client_id,
const char *message);
2014-09-07 03:04:42 +02:00
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 18:47:08 +02:00
2014-09-07 03:04:42 +02: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 18:47:08 +02:00
2014-09-07 03:04:42 +02:00
void
2014-09-18 01:01:36 +02:00
tox_weechat_friend_request_save_identity(struct t_tox_weechat_identity *identity);
void
tox_weechat_friend_request_free_identity(struct t_tox_weechat_identity *identity);
2014-09-02 18:47:08 +02:00
#endif // TOX_WEECHAT_FRIEND_REQUESTS_H