summaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-04-18 14:22:23 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-04-18 14:22:23 -0400
commite19340f72c2f850f4372a0f12a89390a17c92410 (patch)
treea98f24cbef0279fe4184a411622833743805cc06 /src/map.h
parent3570853eccd1784492f72fac88b2560c9d3b8703 (diff)
- use PR_Bool instead of bool_t
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/map.h b/src/map.h
index 82f6fbd..b2836c1 100644
--- a/src/map.h
+++ b/src/map.h
@@ -1,27 +1,27 @@
struct plugin_state;
/* Functions to pull data out of maps. */
void map_init(struct plugin_state *state);
-bool_t map_supports_domain(struct plugin_state *state,
+PRBool map_supports_domain(struct plugin_state *state,
const char *domain,
- bool_t *supported);
-bool_t map_supports_map(struct plugin_state *state,
+ PRBool *supported);
+PRBool map_supports_map(struct plugin_state *state,
const char *domain,
const char *map,
- bool_t *supported);
-bool_t map_match(struct plugin_state *state,
+ PRBool *supported);
+PRBool map_match(struct plugin_state *state,
const char *domain, const char *map,
unsigned int key_len, char *key,
unsigned int *value_len, char **value);
-bool_t map_first(struct plugin_state *state,
+PRBool map_first(struct plugin_state *state,
const char *domain, const char *map,
unsigned int *first_key_len, char **first_key,
unsigned int *first_value_len, char **first_value);
-bool_t map_next(struct plugin_state *state,
+PRBool map_next(struct plugin_state *state,
const char *domain, const char *map,
unsigned int prev_len, const char *prev,
unsigned int *next_key_len, char **next_key,
unsigned int *next_value_len, char **next_value);
-bool_t map_order(struct plugin_state *state,
+PRBool map_order(struct plugin_state *state,
const char *domain, const char *map,
unsigned int *order);
/* Functions to push data into maps. */