aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-01-13 17:41:08 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2011-01-14 17:36:00 -0700
commit99961c4561f478523048ed69b37b37c432c42b8a (patch)
tree7ab3ee3a2f54f3ee86188150af95430d5cce815e /src/uzbl-core.h
parent975e322d37afaca6e565b37282f2d9e6038124bc (diff)
kill run_handler, inject_handler_args, strfree and sync_stdout
Diffstat (limited to 'src/uzbl-core.h')
-rw-r--r--src/uzbl-core.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/uzbl-core.h b/src/uzbl-core.h
index 049053a..14b0571 100644
--- a/src/uzbl-core.h
+++ b/src/uzbl-core.h
@@ -83,7 +83,6 @@ typedef struct {
/* stores (key)"variable name" -> (value)"pointer to var*/
GHashTable *proto_var;
- gchar *sync_stdout;
GPtrArray *connect_chan;
GPtrArray *client_chan;
} Communication;
@@ -237,9 +236,6 @@ typedef struct {
char *
itos(int val);
-gchar*
-strfree(gchar *str);
-
void
clean_up(void);
@@ -344,9 +340,6 @@ GtkPlug*
create_plug ();
void
-run_handler (const gchar *act, const gchar *args);
-
-void
settings_init ();
void
@@ -485,15 +478,14 @@ typedef struct {
gboolean no_split;
} CommandInfo;
-CommandInfo *
+const CommandInfo *
parse_command_parts(const gchar *line, GArray *a);
void
parse_command_arguments(const gchar *p, GArray *a, gboolean no_split);
void
-run_parsed_command(CommandInfo *c, GArray *a, GString *result);
-
+run_parsed_command(const CommandInfo *c, GArray *a, GString *result);
typedef struct {
gchar *name;