aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-library.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2012-08-11 07:37:40 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2012-08-11 20:17:10 +0200
commitf55afb6542b9eb39e56a32dc8a18002ad680ad41 (patch)
tree3598db4d389ba0cae87b701174c757ab4a74da75 /liblogdiag/ld-library.h
parentb0ecd81212bd26a72d5c10f85c2061a9264ccf81 (diff)
downloadlogdiag-f55afb6542b9eb39e56a32dc8a18002ad680ad41.tar.gz
logdiag-f55afb6542b9eb39e56a32dc8a18002ad680ad41.tar.xz
logdiag-f55afb6542b9eb39e56a32dc8a18002ad680ad41.zip
Put subcategories and symbols in different lists.
Removes some ugliness from the code.
Diffstat (limited to 'liblogdiag/ld-library.h')
-rw-r--r--liblogdiag/ld-library.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/liblogdiag/ld-library.h b/liblogdiag/ld-library.h
index 26521ed..dd05efa 100644
--- a/liblogdiag/ld-library.h
+++ b/liblogdiag/ld-library.h
@@ -2,7 +2,7 @@
* ld-library.h
*
* This file is a part of logdiag.
- * Copyright Přemysl Janouch 2010. All rights reserved.
+ * Copyright Přemysl Janouch 2010, 2012. All rights reserved.
*
* See the file LICENSE for licensing information.
*
@@ -62,9 +62,11 @@ gboolean ld_library_load (LdLibrary *self, const gchar *directory);
LdSymbol *ld_library_find_symbol (LdLibrary *self, const gchar *identifier);
void ld_library_clear (LdLibrary *self);
-void ld_library_insert_child (LdLibrary *self, GObject *child, gint pos);
-void ld_library_remove_child (LdLibrary *self, GObject *child);
-const GSList *ld_library_get_children (LdLibrary *self);
+void ld_library_insert_category (LdLibrary *self,
+ LdSymbolCategory *category, gint pos);
+void ld_library_remove_category (LdLibrary *self,
+ LdSymbolCategory *category);
+const GSList *ld_library_get_categories (LdLibrary *self);
G_END_DECLS