2014-08-13 10:39:27 +01:00
|
|
|
#ifndef NL_H
|
|
|
|
#define NL_H
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2019-07-26 19:53:28 +00:00
|
|
|
gpointer CreateNLSocket (void);
|
2014-08-13 10:39:27 +01:00
|
|
|
int ReadEvents (gpointer sock, gpointer buffer, gint32 count, gint32 size);
|
2019-07-26 19:53:28 +00:00
|
|
|
gpointer CloseNLSocket (gpointer sock);
|
2014-08-13 10:39:27 +01:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|