summaryrefslogtreecommitdiff
path: root/ext/pool_fileconflicts.h
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2013-04-11 14:10:27 +0200
committerMichael Schroeder <mls@suse.de>2013-04-11 14:10:27 +0200
commit5ad65be4dc7644e18e6e515026132bfe8ffffe9c (patch)
treead54f30d0bb7489ecb1a9f5da859a3e955ad8d62 /ext/pool_fileconflicts.h
parente294d07e3ae5968b5e48fa74c468642dd11dcf19 (diff)
downloadlibsolv-5ad65be4dc7644e18e6e515026132bfe8ffffe9c.tar.gz
libsolv-5ad65be4dc7644e18e6e515026132bfe8ffffe9c.tar.bz2
libsolv-5ad65be4dc7644e18e6e515026132bfe8ffffe9c.zip
add extra flag paramter to find_fileconflicts
In the future we'll add support for a flag that tells it to check for aliased dirs.
Diffstat (limited to 'ext/pool_fileconflicts.h')
-rw-r--r--ext/pool_fileconflicts.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pool_fileconflicts.h b/ext/pool_fileconflicts.h
index f8be98d..8666fc6 100644
--- a/ext/pool_fileconflicts.h
+++ b/ext/pool_fileconflicts.h
@@ -10,6 +10,8 @@
#include "pool.h"
-extern int pool_findfileconflicts(Pool *pool, Queue *pkgs, int cutoff, Queue *conflicts, void *(*handle_cb)(Pool *, Id, void *) , void *handle_cbdata);
+extern int pool_findfileconflicts(Pool *pool, Queue *pkgs, int cutoff, Queue *conflicts, int flags, void *(*handle_cb)(Pool *, Id, void *) , void *handle_cbdata);
+
+#define FINDFILECONFLICTS_USESOLVABLEFILELIST (1 << 0)
#endif