diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-16 11:27:44 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-16 11:57:06 -0500 |
commit | bdf00d3dbd19c3def6127f3d372d630930a26abb (patch) | |
tree | a6265c2db858d1981c2f8ddc7a394ee3416279e8 /lib/libalpm/conflict.h | |
parent | 1cd6515af0ae5d1c3dabd30749a37cfefa7dc4f5 (diff) | |
download | pacman-bdf00d3dbd19c3def6127f3d372d630930a26abb.tar.xz |
Make pmfileconflict_t type public
This removes the need to write accessor methods for every type we have,
and simplifies the API. Any type that doesn't need magic* can be
converted in this fashion to make it easier for frontend applications to
use, as well as make it less of a pain to introduce new such structs in
the future.
* "magic" meaning something like pmpkg_t where values can be lazy loaded.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/conflict.h')
-rw-r--r-- | lib/libalpm/conflict.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libalpm/conflict.h b/lib/libalpm/conflict.h index 7a3784a2..a9d3e27b 100644 --- a/lib/libalpm/conflict.h +++ b/lib/libalpm/conflict.h @@ -30,13 +30,6 @@ struct __pmconflict_t { char *reason; }; -struct __pmfileconflict_t { - char *target; - pmfileconflicttype_t type; - char *file; - char *ctarget; -}; - pmconflict_t *_alpm_conflict_dup(const pmconflict_t *conflict); void _alpm_conflict_free(pmconflict_t *conflict); alpm_list_t *_alpm_innerconflicts(pmhandle_t *handle, alpm_list_t *packages); |