diff options
author | Michael Schroeder <mls@suse.de> | 2013-09-04 18:54:57 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2013-09-04 18:54:57 +0200 |
commit | 813ed1da5594e3fcde37f9f23120f70791e7a596 (patch) | |
tree | 5f2cbf1d0190a3a1f71c88489b0ef85ed968bde7 /src/selection.h | |
parent | 9baad7fefcf3152882fe5d31bb386e64839d5929 (diff) | |
download | libsolv-813ed1da5594e3fcde37f9f23120f70791e7a596.tar.gz libsolv-813ed1da5594e3fcde37f9f23120f70791e7a596.tar.bz2 libsolv-813ed1da5594e3fcde37f9f23120f70791e7a596.zip |
add pool_whatmatchesdep and selection_make_deps to query for packages intersecting a dependency
Diffstat (limited to 'src/selection.h')
-rw-r--r-- | src/selection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/selection.h b/src/selection.h index 705768b..e1da169 100644 --- a/src/selection.h +++ b/src/selection.h @@ -34,6 +34,8 @@ extern "C" { #define SELECTION_WITH_SOURCE (1 << 13) extern int selection_make(Pool *pool, Queue *selection, const char *name, int flags); +extern int selection_make_deps(Pool *pool, Queue *selection, const char *name, int flags, int keyname); + extern void selection_filter(Pool *pool, Queue *sel1, Queue *sel2); extern void selection_add(Pool *pool, Queue *sel1, Queue *sel2); extern void selection_solvables(Pool *pool, Queue *selection, Queue *pkgs); |