aboutsummaryrefslogtreecommitdiff
path: root/src/ld-library.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ld-library.h')
-rw-r--r--src/ld-library.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ld-library.h b/src/ld-library.h
index eb0673f..d988230 100644
--- a/src/ld-library.h
+++ b/src/ld-library.h
@@ -53,10 +53,19 @@ struct _LdLibraryClass
};
+/**
+ * LD_LIBRARY_IDENTIFIER_SEPARATOR:
+ *
+ * Defines a string that separates categories and symbols in identifiers.
+ */
+#define LD_LIBRARY_IDENTIFIER_SEPARATOR "/"
+
+
GType ld_library_get_type (void) G_GNUC_CONST;
LdLibrary *ld_library_new (void);
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);