SM0 She11
Path:
/
/
usr
/
include
/
rpm
Full Path (server): /usr/include/rpm
Create Fil3
Upl04d Fil3
📄 argv.h
[E]
[D]
[R]
📄 header.h
[E]
[D]
[R]
📄 rpmbase64.h
[E]
[D]
[R]
📄 rpmbuild.h
[E]
[D]
[R]
📄 rpmcallback.h
[E]
[D]
[R]
📄 rpmcli.h
[E]
[D]
[R]
📄 rpmdb.h
[E]
[D]
[R]
📄 rpmds.h
[E]
[D]
[R]
📄 rpmfc.h
[E]
[D]
[R]
📄 rpmfi.h
[E]
[D]
[R]
📄 rpmfileutil.h
[E]
[D]
[R]
📄 rpmio.h
[E]
[D]
[R]
📄 rpmkeyring.h
[E]
[D]
[R]
📄 rpmlegacy.h
[E]
[D]
[R]
📄 rpmlib.h
[E]
[D]
[R]
📄 rpmlog.h
[E]
[D]
[R]
📄 rpmmacro.h
[E]
[D]
[R]
📄 rpmpgp.h
[E]
[D]
[R]
📄 rpmpol.h
[E]
[D]
[R]
📄 rpmprob.h
[E]
[D]
[R]
📄 rpmps.h
[E]
[D]
[R]
📄 rpmsign.h
[E]
[D]
[R]
📄 rpmspec.h
[E]
[D]
[R]
📄 rpmsq.h
[E]
[D]
[R]
📄 rpmstring.h
[E]
[D]
[R]
📄 rpmstrpool.h
[E]
[D]
[R]
📄 rpmsw.h
[E]
[D]
[R]
📄 rpmtag.h
[E]
[D]
[R]
📄 rpmtd.h
[E]
[D]
[R]
📄 rpmte.h
[E]
[D]
[R]
📄 rpmts.h
[E]
[D]
[R]
📄 rpmtypes.h
[E]
[D]
[R]
📄 rpmurl.h
[E]
[D]
[R]
📄 rpmutil.h
[E]
[D]
[R]
📄 rpmvf.h
[E]
[D]
[R]
Editing: rpmcallback.h
#ifndef _RPMCALLBACK_H #define _RPMCALLBACK_H #include <rpm/rpmtypes.h> #ifdef __cplusplus extern "C" { #endif /** * Bit(s) to identify progress callbacks. */ typedef enum rpmCallbackType_e { RPMCALLBACK_UNKNOWN = 0, RPMCALLBACK_INST_PROGRESS = (1 << 0), RPMCALLBACK_INST_START = (1 << 1), RPMCALLBACK_INST_OPEN_FILE = (1 << 2), RPMCALLBACK_INST_CLOSE_FILE = (1 << 3), RPMCALLBACK_TRANS_PROGRESS = (1 << 4), RPMCALLBACK_TRANS_START = (1 << 5), RPMCALLBACK_TRANS_STOP = (1 << 6), RPMCALLBACK_UNINST_PROGRESS = (1 << 7), RPMCALLBACK_UNINST_START = (1 << 8), RPMCALLBACK_UNINST_STOP = (1 << 9), RPMCALLBACK_REPACKAGE_PROGRESS = (1 << 10), /* obsolete, unused */ RPMCALLBACK_REPACKAGE_START = (1 << 11), /* obsolete, unused */ RPMCALLBACK_REPACKAGE_STOP = (1 << 12), /* obsolete, unused */ RPMCALLBACK_UNPACK_ERROR = (1 << 13), RPMCALLBACK_CPIO_ERROR = (1 << 14), RPMCALLBACK_SCRIPT_ERROR = (1 << 15), RPMCALLBACK_SCRIPT_START = (1 << 16), RPMCALLBACK_SCRIPT_STOP = (1 << 17), RPMCALLBACK_INST_STOP = (1 << 18), RPMCALLBACK_ELEM_PROGRESS = (1 << 19), } rpmCallbackType; /** */ typedef void * (*rpmCallbackFunction) (const void * h, const rpmCallbackType what, const rpm_loff_t amount, const rpm_loff_t total, fnpyKey key, rpmCallbackData data); #ifdef __cplusplus } #endif #endif /* _RPMCALLBACK_H */
Save