summaryrefslogtreecommitdiffstats
path: root/src/include/abrt_types.h
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-12-08 16:07:31 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-12-08 16:07:31 +0100
commitdc3c5b79ba1ee6fd7a98842fde43d072e004f93b (patch)
tree131a23c0e5ac6c6be1f23872753ac1ae62e7f7fa /src/include/abrt_types.h
parentcba369350c57dc763814376ac4cba8a011962fc7 (diff)
downloadabrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.tar.gz
abrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.tar.xz
abrt-dc3c5b79ba1ee6fd7a98842fde43d072e004f93b.zip
add abrt_ prefixes to abrt-internal functions in libabrt.so
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/include/abrt_types.h')
-rw-r--r--src/include/abrt_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/abrt_types.h b/src/include/abrt_types.h
index 3ebd1697..858c0c79 100644
--- a/src/include/abrt_types.h
+++ b/src/include/abrt_types.h
@@ -31,8 +31,11 @@ extern "C" {
*/
typedef GHashTable map_string_h;
+#define new_map_string abrt_new_map_string
map_string_h *new_map_string(void);
+#define free_map_string abrt_free_map_string
void free_map_string(map_string_h *ms);
+#define get_map_string_item_or_empty abrt_get_map_string_item_or_empty
const char *get_map_string_item_or_empty(map_string_h *ms, const char *key);
static inline
const char *get_map_string_item_or_NULL(map_string_h *ms, const char *key)