diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-16 11:42:10 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-16 11:57:33 -0500 |
commit | 7f6c1a76c66fb718fad2ecce68f99ee13d18ff15 (patch) | |
tree | 4f4bac122e324a1b5cea081c2e1a492453373c46 /lib/libalpm/deps.h | |
parent | 19fcc7401666cd892f7b8a5a49854a1b2eb9988b (diff) | |
download | pacman-7f6c1a76c66fb718fad2ecce68f99ee13d18ff15.tar.xz |
Make pmdepend_t and pmdepmissing_t public
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/deps.h')
-rw-r--r-- | lib/libalpm/deps.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libalpm/deps.h b/lib/libalpm/deps.h index 97c0918e..ecc3b92c 100644 --- a/lib/libalpm/deps.h +++ b/lib/libalpm/deps.h @@ -27,21 +27,6 @@ #include "package.h" #include "alpm.h" -/* Dependency */ -struct __pmdepend_t { - char *name; - char *version; - unsigned long name_hash; - pmdepmod_t mod; -}; - -/* Missing dependency */ -struct __pmdepmissing_t { - char *target; - pmdepend_t *depend; - char *causingpkg; /* this is used in case of remove dependency error only */ -}; - void _alpm_dep_free(pmdepend_t *dep); pmdepend_t *_alpm_dep_dup(const pmdepend_t *dep); void _alpm_depmiss_free(pmdepmissing_t *miss); |