summaryrefslogtreecommitdiff
path: root/lib/rpmte.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-12-18 09:04:57 +0200
committerPanu Matilainen <pmatilai@redhat.com>2009-12-18 09:04:57 +0200
commit4e20d4c49f1d623458a7fdc28214e6729c4e32d4 (patch)
treeb1d84a178cef5ad93ab490f41239de2480c41ac1 /lib/rpmte.h
parentccc69322626ed649d72248e23a2834a9860099fb (diff)
downloadlibrpm-tizen-4e20d4c49f1d623458a7fdc28214e6729c4e32d4.tar.gz
librpm-tizen-4e20d4c49f1d623458a7fdc28214e6729c4e32d4.tar.bz2
librpm-tizen-4e20d4c49f1d623458a7fdc28214e6729c4e32d4.zip
Move transaction element iterator into rpmts.c where it logically belongs
- make rpmtsi_s really opaque, move rpmtsi typedef to rpmtypes.h along with all the other commonly used types
Diffstat (limited to 'lib/rpmte.h')
-rw-r--r--lib/rpmte.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/rpmte.h b/lib/rpmte.h
index 5af099f13..62b3f6332 100644
--- a/lib/rpmte.h
+++ b/lib/rpmte.h
@@ -22,11 +22,6 @@ extern int _rpmte_debug;
typedef struct tsortInfo_s * tsortInfo;
/** \ingroup rpmte
- * Transaction element iterator.
- */
-typedef struct rpmtsi_s * rpmtsi;
-
-/** \ingroup rpmte
* Transaction element type.
*/
typedef enum rpmElementType_e {
@@ -343,28 +338,6 @@ rpmfi rpmteFI(rpmte te);
*/
void rpmteColorDS(rpmte te, rpmTag tag);
-/** \ingroup rpmte
- * Destroy transaction element iterator.
- * @param tsi transaction element iterator
- * @return NULL always
- */
-rpmtsi rpmtsiFree(rpmtsi tsi);
-
-/** \ingroup rpmte
- * Create transaction element iterator.
- * @param ts transaction set
- * @return transaction element iterator
- */
-rpmtsi rpmtsiInit(rpmts ts);
-
-/** \ingroup rpmte
- * Return next transaction element of type.
- * @param tsi transaction element iterator
- * @param type transaction element type selector (0 for any)
- * @return next transaction element of type, NULL on termination
- */
-rpmte rpmtsiNext(rpmtsi tsi, rpmElementType type);
-
#ifdef __cplusplus
}
#endif