~labcontrol-team/labcontrol/trunk

1
2
3
4
5
6
7
8
9
10
#ifndef HELP_SERVER_H
#define HELP_SERVER_H

#include <gnet.h>

void init_help_server();
static void async_accept (GTcpSocket* server, GTcpSocket* client, gpointer data);
static gboolean receive_help_call(GIOChannel* iochannel, GIOCondition condition, gpointer data);

#endif