aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.h
diff options
context:
space:
mode:
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;