summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-04-02 22:28:01 +0200
committerAurelien Foret <aurelien@archlinux.org>2005-04-02 22:28:01 +0200
commit2bbf118842a7d6ae83e37cb307f6c5852742d75a (patch)
treecd06a01f76ee00271a8bb50c5b004ec5be810778 /lib
parent82de25badfef33a82a1ef9a79d40ddea998de88c (diff)
downloadpacman-2bbf118842a7d6ae83e37cb307f6c5852742d75a.tar.gz
pacman-2bbf118842a7d6ae83e37cb307f6c5852742d75a.tar.xz
added RESOLVEDEPS to the list of transaction events
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/alpm.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index ff61a5e8..30e07578 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -96,6 +96,7 @@ int alpm_get_option(unsigned char parm, long *data);
PM_DB *alpm_db_register(char *treename);
int alpm_db_unregister(PM_DB *db);
+/* Sync databases */
int alpm_db_getlastupdate(PM_DB *db, char *ts);
int alpm_db_update(PM_DB *db, char *archive, char *ts);
@@ -139,8 +140,8 @@ enum {
};
/* reasons -- ie, why the package was installed */
-#define PM_PKG_REASON_EXPLICIT 0 /* explicitly requested by the user */
-#define PM_PKG_REASON_DEPEND 1 /* installed as a dependency for another package */
+#define PM_PKG_REASON_EXPLICIT 1 /* explicitly requested by the user */
+#define PM_PKG_REASON_DEPEND 2 /* installed as a dependency for another package */
void *alpm_pkg_getinfo(PM_PKG *pkg, unsigned char parm);
int alpm_pkg_load(char *filename, PM_PKG **pkg);
@@ -203,10 +204,12 @@ enum {
/* Events */
enum {
- PM_TRANS_EVT_DEPS_START = 1,
- PM_TRANS_EVT_DEPS_DONE,
- PM_TRANS_EVT_CONFLICTS_START,
- PM_TRANS_EVT_CONFLICTS_DONE,
+ PM_TRANS_EVT_CHECKDEPS_START = 1,
+ PM_TRANS_EVT_CHECKDEPS_DONE,
+ PM_TRANS_EVT_FILECONFLICTS_START,
+ PM_TRANS_EVT_FILECONFLICTS_DONE,
+ PM_TRANS_EVT_RESOLVEDEPS_START,
+ PM_TRANS_EVT_RESOLVEDEPS_DONE,
PM_TRANS_EVT_ADD_START,
PM_TRANS_EVT_ADD_DONE,
PM_TRANS_EVT_REMOVE_START,
@@ -222,7 +225,8 @@ typedef void (*alpm_trans_cb)(unsigned short, void *, void *);
enum {
PM_TRANS_TYPE = 1,
PM_TRANS_FLAGS,
- PM_TRANS_TARGETS
+ PM_TRANS_TARGETS,
+ PM_TRANS_PACKAGES
};
void *alpm_trans_getinfo(unsigned char parm);