diff options
author | Rémy Oudompheng <remy@archlinux.org> | 2011-04-21 07:45:11 +0200 |
---|---|---|
committer | Rémy Oudompheng <remy@archlinux.org> | 2011-04-21 07:45:27 +0200 |
commit | 36737aebb78f170611bf46867de0054347593b79 (patch) | |
tree | 6b30a9afc6680afbc86fdf9b49d10eef8858086d | |
parent | 96ad414d73073a50c6068eca8c208a64238ea868 (diff) | |
download | pacman-36737aebb78f170611bf46867de0054347593b79.tar.gz pacman-36737aebb78f170611bf46867de0054347593b79.tar.xz |
alpm.h: add several missing documentation strings
Signed-off-by: Rémy Oudompheng <remy@archlinux.org>
-rw-r--r-- | lib/libalpm/alpm.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index c223abf4..e095148c 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -114,9 +114,16 @@ int alpm_logaction(const char *fmt, ...); * Downloading */ +/** Type of download progress callbacks. + * @param filename the name of the file being downloaded + * @param xfered the number of transferred bytes + * @param total the total number of bytes to transfer + */ typedef void (*alpm_cb_download)(const char *filename, off_t xfered, off_t total); + typedef void (*alpm_cb_totaldl)(off_t total); + /** A callback for downloading files * @param url the URL of the file to be downloaded * @param localpath the directory to which the file should be downloaded @@ -596,6 +603,9 @@ size_t alpm_pkg_changelog_read(void *ptr, size_t size, int alpm_pkg_changelog_close(const pmpkg_t *pkg, void *fp); +/** Returns whether the package has an install scriptlet. + * @return 0 if FALSE, TRUE otherwise + */ int alpm_pkg_has_scriptlet(pmpkg_t *pkg); /** Returns the size of download. @@ -797,6 +807,9 @@ typedef void (*alpm_trans_cb_conv)(pmtransconv_t, void *, void *, /** Transaction Progress callback */ typedef void (*alpm_trans_cb_progress)(pmtransprog_t, const char *, int, size_t, size_t); +/** Returns the bitfield of flags for the current transaction. + * @sa _pmtransflag_t + */ int alpm_trans_get_flags(void); /** Returns a list of packages added by the transaction. |