diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-05-04 19:55:23 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-05-04 19:55:23 +0000 |
commit | a26095f8fc27eb564fd5b49c0d99e7821c21e2e8 (patch) | |
tree | e9491a2171abd4414e4a2b59ebdaec6edb85e59c /lib/libalpm/alpm.h | |
parent | 14c8583ccbb9f3ff218611ca3d54d93b394b41b5 (diff) |
event transaction callback rework to prepare the introduction of a conversation callback
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 79eb9d20..989bca25 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -229,7 +229,10 @@ enum { }; /* Event callback */ -typedef void (*alpm_trans_cb)(unsigned short, void *, void *); +typedef void (*alpm_trans_cb_event)(unsigned char, void *, void *); + +/* Conversation callback */ +typedef void (*alpm_trans_cb_conv)(unsigned char, void *, void *); /* Info parameters */ enum { @@ -240,7 +243,7 @@ enum { }; void *alpm_trans_getinfo(unsigned char parm); -int alpm_trans_init(unsigned char type, unsigned char flags, alpm_trans_cb cb); +int alpm_trans_init(unsigned char type, unsigned char flags, alpm_trans_cb_event cb_event); int alpm_trans_sysupgrade(); int alpm_trans_addtarget(char *target); int alpm_trans_prepare(PM_LIST **data); |