summaryrefslogtreecommitdiff
path: root/xps/muxps.h
diff options
context:
space:
mode:
Diffstat (limited to 'xps/muxps.h')
-rw-r--r--xps/muxps.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xps/muxps.h b/xps/muxps.h
index 371b5983..f3f2cdf4 100644
--- a/xps/muxps.h
+++ b/xps/muxps.h
@@ -38,12 +38,12 @@ void xps_absolute_path(char *output, char *base_uri, char *path, int output_size
typedef struct xps_hash_table_s xps_hash_table;
-xps_hash_table *xps_hash_new(xps_context *ctx);
+xps_hash_table *xps_hash_new(void);
void *xps_hash_lookup(xps_hash_table *table, char *key);
-int xps_hash_insert(xps_context *ctx, xps_hash_table *table, char *key, void *value);
-void xps_hash_free(xps_context *ctx, xps_hash_table *table,
- void (*free_key)(xps_context *ctx, void *),
- void (*free_value)(xps_context *ctx, void *));
+int xps_hash_insert(xps_hash_table *table, char *key, void *value);
+void xps_hash_free(xps_hash_table *table,
+ void (*free_key)(void *),
+ void (*free_value)(void *));
void xps_hash_debug(xps_hash_table *table);
/*