File: pool_fileconflicts.h

package info (click to toggle)
libsolv 0.7.35-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,804 kB
  • sloc: ansic: 73,004; python: 871; perl: 742; tcl: 730; ruby: 705; sh: 263; cpp: 204; makefile: 41
file content (19 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2009-2012, Novell Inc.
 *
 * This program is licensed under the BSD license, read LICENSE.BSD
 * for further information
 */

#ifndef POOL_FILECONFLICTS_H
#define POOL_FILECONFLICTS_H

#include "pool.h"

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_USE_SOLVABLEFILELIST	(1 << 0)
#define FINDFILECONFLICTS_CHECK_DIRALIASING	(1 << 1)
#define FINDFILECONFLICTS_USE_ROOTDIR		(1 << 2)

#endif