diff options
Diffstat (limited to 'testing/nToxAudio.h')
-rw-r--r-- | testing/nToxAudio.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/testing/nToxAudio.h b/testing/nToxAudio.h deleted file mode 100644 index 19b31f8b..00000000 --- a/testing/nToxAudio.h +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | /* nTox.h | ||
2 | * | ||
3 | *Textual frontend for Tox. | ||
4 | * | ||
5 | * Copyright (C) 2013 Tox project All Rights Reserved. | ||
6 | * | ||
7 | * This file is part of Tox. | ||
8 | * | ||
9 | * Tox is free software: you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation, either version 3 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * Tox is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with Tox. If not, see <http://www.gnu.org/licenses/>. | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef NTOX_H | ||
25 | #define NTOX_H | ||
26 | |||
27 | #include <stdio.h> | ||
28 | #include <stdlib.h> | ||
29 | #include <string.h> | ||
30 | #include <ncurses.h> | ||
31 | #include <curses.h> | ||
32 | #include <ctype.h> | ||
33 | #include <sys/socket.h> | ||
34 | #include <netinet/in.h> | ||
35 | #include <arpa/inet.h> | ||
36 | #include <sys/types.h> | ||
37 | #include <netdb.h> | ||
38 | #include "../core/Messenger.h" | ||
39 | #include "../core/network.h" | ||
40 | |||
41 | #define STRING_LENGTH 256 | ||
42 | #define HISTORY 50 | ||
43 | #define PUB_KEY_BYTES 32 | ||
44 | |||
45 | void new_lines(char *line); | ||
46 | void line_eval(char *line); | ||
47 | void wrap(char output[STRING_LENGTH], char input[STRING_LENGTH], int line_width) ; | ||
48 | int count_lines(char *string) ; | ||
49 | char *appender(char *str, const char c); | ||
50 | void do_refresh(); | ||
51 | |||
52 | |||
53 | |||
54 | |||
55 | #endif | ||