summaryrefslogtreecommitdiff
path: root/lib/libalpm/trans.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-28 23:27:16 +1000
committerAllan McRae <allan@archlinux.org>2011-06-28 23:27:16 +1000
commit6b62508c865feaa35d000fa0bcd0ccd8321cd742 (patch)
treef0f1b4cc60179caaee198766ff3759c4b6b3b139 /lib/libalpm/trans.h
parent8a04bc25a14df93c0ca207ac83d43cdb867346a1 (diff)
downloadpacman-6b62508c865feaa35d000fa0bcd0ccd8321cd742.tar.xz
Rename pmtrans_t to alpm_trans_t
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/trans.h')
-rw-r--r--lib/libalpm/trans.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/trans.h b/lib/libalpm/trans.h
index 87238e4a..8fd01ae3 100644
--- a/lib/libalpm/trans.h
+++ b/lib/libalpm/trans.h
@@ -36,7 +36,7 @@ typedef enum _pmtransstate_t {
} pmtransstate_t;
/* Transaction */
-struct __pmtrans_t {
+struct __alpm_trans_t {
pmtransflag_t flags;
pmtransstate_t state;
alpm_list_t *add; /* list of (alpm_pkg_t *) */
@@ -66,8 +66,8 @@ do { \
} \
} while(0)
-void _alpm_trans_free(pmtrans_t *trans);
-int _alpm_trans_init(pmtrans_t *trans, pmtransflag_t flags,
+void _alpm_trans_free(alpm_trans_t *trans);
+int _alpm_trans_init(alpm_trans_t *trans, pmtransflag_t flags,
alpm_trans_cb_event event, alpm_trans_cb_conv conv,
alpm_trans_cb_progress progress);
int _alpm_runscriptlet(alpm_handle_t *handle, const char *installfn,