also simplify solvable_copy_cb's checksum handling
[platform/upstream/libsolv.git] / ext / pool_fileconflicts.h
1 /*
2  * Copyright (c) 2009-2012, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 #ifndef POOL_FILECONFLICTS_H
9 #define POOL_FILECONFLICTS_H
10
11 #include "pool.h"
12
13 extern int pool_findfileconflicts(Pool *pool, Queue *pkgs, int cutoff, Queue *conflicts, int flags, void *(*handle_cb)(Pool *, Id, void *) , void *handle_cbdata);
14
15 #define FINDFILECONFLICTS_USE_SOLVABLEFILELIST  (1 << 0)
16 #define FINDFILECONFLICTS_CHECK_DIRALIASING     (1 << 1)
17 #define FINDFILECONFLICTS_USE_ROOTDIR           (1 << 2)
18
19 #endif