aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2009-10-14 17:52:38 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2009-10-14 17:52:38 -0600
commitab50c5241f32d6b9c28df33ff419ef10b6ba4071 (patch)
tree820395bae6096cb5d7ed276cae9e3007c1c0b255 /uzbl-core.h
parentef7c7b2f2125a7226fcf58beb76f9891ab9908fc (diff)
parent8fa27940fbc6e0bdde34567dc882d2c6aad6c3b8 (diff)
Merge branch 'experimental' of git://github.com/robm/uzbl
Diffstat (limited to 'uzbl-core.h')
-rw-r--r--uzbl-core.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/uzbl-core.h b/uzbl-core.h
index 270b595..77f3a84 100644
--- a/uzbl-core.h
+++ b/uzbl-core.h
@@ -82,7 +82,8 @@ typedef struct {
GHashTable *proto_var;
gchar *sync_stdout;
- GIOChannel *clientchan;
+ GPtrArray *connect_chan;
+ GPtrArray *client_chan;
} Communication;
@@ -99,6 +100,7 @@ typedef struct {
gchar* searchtx;
gboolean verbose;
GPtrArray *event_buffer;
+ gchar** connect_socket_names;
} State;
@@ -436,6 +438,9 @@ update_gui(WebKitWebView *page, GArray *argv, GString *result);
void
event(WebKitWebView *page, GArray *argv, GString *result);
+void
+init_connect_socket();
+
typedef void (*Command)(WebKitWebView*, GArray *argv, GString *result);
typedef struct {
Command function;