diff options
author | Dave Reisner <d@falconindy.com> | 2011-02-25 09:11:37 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-25 09:45:13 -0600 |
commit | eefe8c83644892b963b1b4e5fbe297fa4be1f119 (patch) | |
tree | 9878cf0af39f5f8324e83bfc918b400b5c03d0c2 /lib/libalpm/alpm.h | |
parent | ab49bf6fa9df6daf7210c28ddfcf013ee9fe4386 (diff) | |
download | pacman-eefe8c83644892b963b1b4e5fbe297fa4be1f119.tar.xz |
alpm: remove public visibility of pmpkghash_t
There's no API functions exposed which allow manipulation of this type,
so remove it from public view. Also, rename the public and private
alpm_db_get_pkgcache symbol to alpm_db_get_pkgcache_has.
Signed-off-by: Dave Reisner <d@falconindy.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 8e1e022a..9ce00678 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -52,7 +52,6 @@ typedef struct __pmdepend_t pmdepend_t; typedef struct __pmdepmissing_t pmdepmissing_t; typedef struct __pmconflict_t pmconflict_t; typedef struct __pmfileconflict_t pmfileconflict_t; -typedef struct __pmpkghash_t pmpkghash_t; /* * Library @@ -187,7 +186,6 @@ int alpm_db_setserver(pmdb_t *db, const char *url); int alpm_db_update(int level, pmdb_t *db); pmpkg_t *alpm_db_get_pkg(pmdb_t *db, const char *name); -pmpkghash_t *alpm_db_get_pkgcache(pmdb_t *db); alpm_list_t *alpm_db_get_pkgcache_list(pmdb_t *db); pmgrp_t *alpm_db_readgrp(pmdb_t *db, const char *name); |