summaryrefslogtreecommitdiff
path: root/lib/rpmte.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rpmte.h')
-rw-r--r--lib/rpmte.h22
1 files changed, 7 insertions, 15 deletions
diff --git a/lib/rpmte.h b/lib/rpmte.h
index a66c1e91f..c52c44a09 100644
--- a/lib/rpmte.h
+++ b/lib/rpmte.h
@@ -233,27 +233,19 @@ int rpmteFailed(rpmte te);
rpmds rpmteDS(rpmte te, rpmTagVal tag);
/** \ingroup rpmte
- * Retrieve file info tag set from transaction element.
+ * Retrieve file info set from transaction element.
* @param te transaction element
- * @return file info tag set
+ * @return file info set (refcounted)
*/
-rpmfi rpmteFI(rpmte te);
+rpmfiles rpmteFiles(rpmte te);
/** \ingroup rpmte
- * Retrieve list of collections
+ * Retrieve file info iterator from transaction element.
+ * @deprecated use rpmteFiles() instead
* @param te transaction element
- * @return list of collections
- */
-ARGV_const_t rpmteCollections(rpmte te);
-
-/** \ingroup rpmte
- * Determine a transaction element is part of a collection
- * @param te transaction element
- * @param collname collection name
- * @return 1 if collname is part of a collection, 0 if not
+ * @return file info tag set
*/
-int rpmteHasCollection(rpmte te, const char * collname);
-
+rpmfi rpmteFI(rpmte te);
#ifdef __cplusplus
}