blob: 0c66394958f074a4003378e8adedd54044207b7a (
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
|
/*
* Copyright (c) 2007, Novell Inc.
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
/*
* repo_solv.h
*
*/
#ifndef LIBSOLV_REPO_SOLVE_H
#define LIBSOLV_REPO_SOLVE_H
#include <stdio.h>
#include "pool.h"
#include "repo.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int repo_add_solv(Repo *repo, FILE *fp, int flags);
#define SOLV_ADD_NO_STUBS (1 << 8)
#ifdef __cplusplus
}
#endif
#endif /* LIBSOLV_REPO_SOLVE_H */
|