2014-09-18 16:55:52 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Håvard Pettersson <haavard.pettersson@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Tox-WeeChat.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
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
|
2014-09-17 23:01:36 +00:00
|
|
|
tox_weechat_friend_request_init_identity(struct t_tox_weechat_identity *identity);
|
|
|
|
|
2014-09-18 15:51:19 +00:00
|
|
|
int
|
|
|
|
tox_weechat_friend_request_add(struct t_tox_weechat_identity *identity,
|
2014-09-17 23:01:36 +00:00
|
|
|
const uint8_t *client_id,
|
|
|
|
const char *message);
|
2014-09-07 01:04:42 +00: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 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
|
2014-09-17 23:01:36 +00: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 16:47:08 +00:00
|
|
|
|
|
|
|
#endif // TOX_WEECHAT_FRIEND_REQUESTS_H
|