1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 15:06:45 +02:00

Python interface for getting the user's nickname/status and executing commands

This commit is contained in:
jakob
2017-05-15 22:12:28 -04:00
parent 0e13a1f1bc
commit 90210daca7
6 changed files with 120 additions and 12 deletions

View File

@ -23,8 +23,14 @@
#ifndef API_H
#define API_H
#include "friendlist.h"
#include "windows.h"
void api_display(const char * const msg);
FriendsList api_get_friendslist(void);
char *api_get_nick(void);
TOX_USER_STATUS api_get_status(void);
char *api_get_status_message(void);
void api_execute(const char *input, int mode);
#endif /* #define API_H */