2013-07-25 21:45:56 -04:00
|
|
|
/* nTox.h
|
2013-08-11 15:24:11 +12:00
|
|
|
*
|
2013-07-25 21:45:56 -04:00
|
|
|
*Textual frontend for Tox.
|
|
|
|
*
|
|
|
|
* 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/>.
|
2013-08-11 15:24:11 +12:00
|
|
|
*
|
2013-07-25 21:45:56 -04:00
|
|
|
*/
|
2013-07-26 04:02:17 -04:00
|
|
|
|
2013-07-13 18:31:16 +01:00
|
|
|
#ifndef NTOX_H
|
|
|
|
#define NTOX_H
|
|
|
|
|
2013-11-10 19:04:01 +01:00
|
|
|
/*
|
|
|
|
* module actually exports nothing for the outside
|
|
|
|
*/
|
|
|
|
|
2013-07-13 18:31:16 +01:00
|
|
|
#include <ctype.h>
|
2013-11-10 19:04:01 +01:00
|
|
|
#include <curses.h>
|
2013-08-27 14:06:19 +03:00
|
|
|
|
2013-08-04 15:10:37 +03:00
|
|
|
#include "../toxcore/tox.h"
|
2013-08-02 22:34:45 -04:00
|
|
|
|
2013-07-13 18:31:16 +01:00
|
|
|
#define STRING_LENGTH 256
|
|
|
|
#define HISTORY 50
|
|
|
|
|
|
|
|
void new_lines(char *line);
|
|
|
|
void do_refresh();
|
|
|
|
|
|
|
|
#endif
|