rpm  4.8.1
rpmcallback.h
Go to the documentation of this file.
1 #ifndef _RPMCALLBACK_H
2 #define _RPMCALLBACK_H
3 
4 #include <rpm/rpmtypes.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
13 typedef enum rpmCallbackType_e {
25  RPMCALLBACK_REPACKAGE_PROGRESS = (1 << 10), /* obsolete, unused */
26  RPMCALLBACK_REPACKAGE_START = (1 << 11), /* obsolete, unused */
27  RPMCALLBACK_REPACKAGE_STOP = (1 << 12), /* obsolete, unused */
34 
37 typedef void * (*rpmCallbackFunction)
38  (const void * h,
39  const rpmCallbackType what,
40  const rpm_loff_t amount,
41  const rpm_loff_t total,
42  fnpyKey key,
43  rpmCallbackData data);
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif /* _RPMCALLBACK_H */
enum rpmCallbackType_e rpmCallbackType
Bit(s) to identify progress callbacks.
rpmCallbackType_e
Bit(s) to identify progress callbacks.
Definition: rpmcallback.h:13
uint64_t rpm_loff_t
Definition: rpmtypes.h:47
void * rpmCallbackData
Definition: rpmtypes.h:66
const void * fnpyKey
Definition: rpmtypes.h:65