diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 08:41:04 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 08:41:04 -0400 |
commit | 299b166ff820e8413f0c34ed5a2e7afac46cd477 (patch) | |
tree | b0b8e1520af740e8a63fd132ebae82326054e12f /response.h |
initial commit
Diffstat (limited to 'response.h')
-rw-r--r-- | response.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/response.h b/response.h new file mode 100644 index 0000000..6fca57c --- /dev/null +++ b/response.h @@ -0,0 +1,17 @@ +#include <gio/gio.h> +#include <glibconfig.h> +#include <glib.h> +#include "signalobject.h" + + +typedef struct _streamStruct { + GPollableInputStream* in; + GPollableOutputStream* out; +} streamStruct; + +void echoCb(gpointer instance, GObject *arg1, gpointer user_data); + +gboolean cbClientInput(gpointer data, gpointer additional); +gboolean cbClientOutput(gpointer data, gpointer additional); +void initSignals(guint *signal); +void echoCb(gpointer instance, GObject *arg1, gpointer user_data);
\ No newline at end of file |