toxcore/toxcore/tox.c

107 lines
2.0 KiB
C
Raw Normal View History

/* tox.c
*
* The Tox public API.
*
* Copyright (C) 2013 Tox project All Rights Reserved.
*
* This file is part of Tox.
*
* Tox 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 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. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "Messenger.h"
2014-09-27 01:25:52 +08:00
#include "group.h"
2014-04-28 01:21:26 +08:00
#include "logger.h"
2015-02-14 05:18:02 +08:00
#define TOX_DEFINED
typedef struct Messenger Tox;
#include "tox.h"
2015-02-14 05:18:02 +08:00
#define SET_ERROR_PARAMETER(param, x) {if(param) {*param = x;}}
2015-02-14 05:18:02 +08:00
uint32_t tox_version_major(void)
2014-11-20 10:36:09 +08:00
{
2015-02-14 05:18:02 +08:00
return 0;
2014-11-20 10:36:09 +08:00
}
2015-02-14 05:18:02 +08:00
uint32_t tox_version_minor(void)
{
2015-02-14 05:18:02 +08:00
return 0;
}
2015-02-14 05:18:02 +08:00
uint32_t tox_version_patch(void)
{
2015-02-14 05:18:02 +08:00
return 0;
}
2015-02-14 05:18:02 +08:00
bool tox_version_is_compatible(uint32_t major, uint32_t minor, uint32_t patch)
{
2015-02-14 05:18:02 +08:00
//TODO
return 1;
}
2015-02-14 05:18:02 +08:00
void tox_options_default(struct Tox_Options *options)
{
2015-02-14 05:18:02 +08:00
if (options) {
memset(options, 0, sizeof(struct Tox_Options));
2014-05-20 06:10:40 +08:00
}
}
2015-02-14 05:18:02 +08:00
struct Tox_Options *tox_options_new(TOX_ERR_OPTIONS_NEW *error)
{
2015-02-14 05:18:02 +08:00
struct Tox_Options *options = calloc(sizeof(struct Tox_Options), 1);
2015-02-14 05:18:02 +08:00
if (options) {
SET_ERROR_PARAMETER(error, TOX_ERR_OPTIONS_NEW_OK);
return options;
}
2015-02-14 05:18:02 +08:00
SET_ERROR_PARAMETER(error, TOX_ERR_OPTIONS_NEW_MALLOC);
return NULL;
}
2015-02-14 05:18:02 +08:00
void tox_options_free(struct Tox_Options *options)
{
2015-02-14 05:18:02 +08:00
free(options);
}
2015-02-14 05:18:02 +08:00
Tox *tox_new(struct Tox_Options const *options, uint8_t const *data, size_t length, TOX_ERR_NEW *error)
{
}
void tox_kill(Tox *tox)
{
}
2015-02-14 05:18:02 +08:00
size_t tox_save_size(Tox const *tox)
{
}
2015-02-14 05:18:02 +08:00
void tox_save(Tox const *tox, uint8_t *data)
{
}