mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 13:16:20 +00:00
Added #define's to headers
This commit is contained in:
@@ -20,6 +20,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef RELEASE_H
|
||||
#define RELEASE_H
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
char * release_get_latest(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -20,6 +20,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef ROOM_CHAT_H
|
||||
#define ROOM_CHAT_H
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
void room_join(const char * const jid, const char * const nick);
|
||||
@@ -33,3 +36,5 @@ GList * room_get_roster(const char * const jid);
|
||||
void room_set_roster_received(const char * const jid);
|
||||
gboolean room_get_roster_received(const char * const jid);
|
||||
void room_remove_from_roster(const char * const jid, const char * const nick);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -20,7 +20,12 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TINYURL_H
|
||||
#define TINYURL_H
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
gboolean tinyurl_valid(char *url);
|
||||
char * tinyurl_get(char *url);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user