summaryrefslogtreecommitdiffstats
path: root/collection/collection.h
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2009-10-25 13:21:24 -0400
committerStephen Gallagher <sgallagh@redhat.com>2009-12-10 17:20:26 -0500
commit2658ad549319d664cb308cf5852c7cdb55a7a601 (patch)
treede4c155fea6afd0e434f06cba9abeecb81504d06 /collection/collection.h
parent8ee482cfeaf83bfbfd15d8c9e6c660793b43bbf3 (diff)
downloadding-libs2-2658ad549319d664cb308cf5852c7cdb55a7a601.tar.gz
ding-libs2-2658ad549319d664cb308cf5852c7cdb55a7a601.tar.xz
ding-libs2-2658ad549319d664cb308cf5852c7cdb55a7a601.zip
COLLECTION Create reference to the top level collection
This patch adds ability to create a reference to the top level collection. Previously one could get reference only to collection inside other collection. With this change it becomes possible to have two pointers to the same top level collection from multiple places. COLLECTION Adding comment. COLLECTION: Some tracing
Diffstat (limited to 'collection/collection.h')
-rw-r--r--collection/collection.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/collection/collection.h b/collection/collection.h
index 2e2fe64..665d5f0 100644
--- a/collection/collection.h
+++ b/collection/collection.h
@@ -686,8 +686,10 @@ int col_is_item_in_collection(struct collection_item *ci, /* Collection to fin
int *found); /* Boolean that turns to nonzero if the match is found */
-/* Get collection - get a pointer to a collection included into another collection */
-/* Delete extracted collection after use to decrease reference count. */
+/* Get collection - get a pointer to a collection included into another collection.
+ * If the collection_to_find is NULL function reterns a reference to the top level collection.
+ * Delete extracted collection after use to decrease reference count.
+ */
int col_get_collection_reference(struct collection_item *ci, /* High level collection */
struct collection_item **acceptor, /* The pointer that will accept extracted handle */
const char *collection_to_find); /* Name to of the collection */