aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar keis <keijser@gmail.com>2010-11-30 21:45:57 +0100
committerGravatar keis <keijser@gmail.com>2010-12-13 04:12:12 +0100
commit04a5223d6abb42c42acc31c8b50ed11a049c59db (patch)
treeed58aa252203bf38e25567db9d0ce4baf0a561d6 /src/uzbl-core.h
parentb9ab642298cba8e6a0aeb69a4ad427d679cdb5c2 (diff)
cookies rework
* send events on cookie changes * add command to add a new cookie parses same syntax as events no ADD_COOKIE event is raised for these cookies * add command to delete a cookie parses same syntax as events, ignoring everything after 5th argument no DELETE_COOKIE event is raised for these cookies
Diffstat (limited to 'src/uzbl-core.h')
-rw-r--r--src/uzbl-core.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/uzbl-core.h b/src/uzbl-core.h
index b521f93..098cc95 100644
--- a/src/uzbl-core.h
+++ b/src/uzbl-core.h
@@ -452,6 +452,12 @@ void
show_inspector(WebKitWebView *page, GArray *argv, GString *result);
void
+add_cookie(WebKitWebView *page, GArray *argv, GString *result);
+
+void
+delete_cookie(WebKitWebView *page, GArray *argv, GString *result);
+
+void
builtins();
typedef void (*Command)(WebKitWebView*, GArray *argv, GString *result);