diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-11-20 09:10:23 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-11-20 09:10:23 +0000 |
commit | aa1c0ba9f8787fc3b1a1190103e394b0c1c95922 (patch) | |
tree | ed0c9675f7fc5da043a69b36e0b8c6c8e05cb583 /lib/libalpm/log.h | |
parent | b8b9596b13de957566211b0e1db3e473ed66e147 (diff) | |
download | pacman-aa1c0ba9f8787fc3b1a1190103e394b0c1c95922.tar.xz |
* repo-add script - to add entries to a db file directly from package data (no PKGBUILD)
* libalpm api changes - move from a _getinfo(p, WHAT_WE_WANT) scheme to a
typesafe _get_what_we_want(p) scheme [not 100% complete yet]
* some const correctness changes
* removal of PM_* types in alpm.h in favor of the pm*_t types used throughout
libalpm
Diffstat (limited to 'lib/libalpm/log.h')
-rw-r--r-- | lib/libalpm/log.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libalpm/log.h b/lib/libalpm/log.h index da1d9966..ab35e72b 100644 --- a/lib/libalpm/log.h +++ b/lib/libalpm/log.h @@ -21,12 +21,7 @@ #ifndef _ALPM_LOG_H #define _ALPM_LOG_H -#define LOG_STR_LEN 256 - -typedef void (*alpm_cb_log)(unsigned short, char *); - -extern alpm_cb_log pm_logcb; -extern unsigned char pm_logmask; +#define LOG_STR_LEN 1024 void _alpm_log(unsigned char flag, char *fmt, ...); |