blob: 69ce727cade051cd0e67a0e05897848f8168ed70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef _ALPM_CONFLICT_H
#define _ALPM_CONFLICT_H
#include "db.h"
#include "alpm.h"
#define CONFLICT_FILE_LEN 512
struct __pmconflict_t {
char target[PKG_NAME_LEN];
pmconflicttype_t type;
char file[CONFLICT_FILE_LEN];
char ctarget[PKG_NAME_LEN];
};
alpm_list_t *_alpm_checkconflicts(pmdb_t *db, alpm_list_t *packages);
alpm_list_t *_alpm_db_find_conflicts(pmdb_t *db, pmtrans_t *trans, char *root, alpm_list_t **skip_list);
#endif
|