wmud/src/networking.h
Polonkai Gergely f06e2636af Added necessary includes to networking.h
Signed-off-by: Polonkai Gergely <polesz@w00d5t0ck.info>
2012-03-13 02:20:17 +01:00

17 lines
266 B
C

#ifndef __WMUD_NETWORKING_H__
# define __WMUD_NETWORKING_H__
#include <glib.h>
#include <gio/gio.h>
typedef struct _wmudClient {
GSocket *socket;
GString *buffer;
} wmudClient;
extern GSList *clients;
gboolean wmud_networking_init(guint port_number);
#endif