diff options
author | Allan McRae <allan@archlinux.org> | 2011-07-01 18:01:39 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-07-01 18:01:39 +0200 |
commit | 495ba26e63ec5cb6b8def29f4e22ea7c444348d8 (patch) | |
tree | f132a043c54d6059b55a617e100cd859b6c2d7ef /lib/libalpm/alpm.h | |
parent | 3189d3bc4a7b5f3e92db14256e307e9a58071b2a (diff) | |
download | pacman-495ba26e63ec5cb6b8def29f4e22ea7c444348d8.tar.gz pacman-495ba26e63ec5cb6b8def29f4e22ea7c444348d8.tar.xz |
Prefix alpm_transconv_t members with ALPM
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 22861ffb..c9b2c850 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -849,13 +849,13 @@ typedef enum _alpm_transevt_t { /** Transaction Conversations (ie, questions) */ typedef enum _alpm_transconv_t { - PM_TRANS_CONV_INSTALL_IGNOREPKG = 1, - PM_TRANS_CONV_REPLACE_PKG = (1 << 1), - PM_TRANS_CONV_CONFLICT_PKG = (1 << 2), - PM_TRANS_CONV_CORRUPTED_PKG = (1 << 3), - PM_TRANS_CONV_LOCAL_NEWER = (1 << 4), - PM_TRANS_CONV_REMOVE_PKGS = (1 << 5), - PM_TRANS_CONV_SELECT_PROVIDER = (1 << 6), + ALPM_TRANS_CONV_INSTALL_IGNOREPKG = 1, + ALPM_TRANS_CONV_REPLACE_PKG = (1 << 1), + ALPM_TRANS_CONV_CONFLICT_PKG = (1 << 2), + ALPM_TRANS_CONV_CORRUPTED_PKG = (1 << 3), + ALPM_TRANS_CONV_LOCAL_NEWER = (1 << 4), + ALPM_TRANS_CONV_REMOVE_PKGS = (1 << 5), + ALPM_TRANS_CONV_SELECT_PROVIDER = (1 << 6), } alpm_transconv_t; /** Transaction Progress */ |