satsolver  0.17.2
repo_solv.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7 
8 /*
9  * repo_solv.h
10  *
11  */
12 
13 #ifndef SATSOLVER_REPO_SOLVE_H
14 #define SATSOLVER_REPO_SOLVE_H
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 #include <stdio.h>
21 
22 #include "pool.h"
23 #include "repo.h"
24 
25 extern int repo_add_solv(Repo *repo, FILE *fp);
26 extern int repo_add_solv_flags(Repo *repo, FILE *fp, int flags);
27 
28 #define SOLV_ADD_NO_STUBS (1 << 8)
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif /* SATSOLVER_REPO_SOLVE_H */