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 LIBSOLV_REPO_SOLVE_H 14 #define LIBSOLV_REPO_SOLVE_H 15 16 #include <stdio.h> 17 18 #include "pool.h" 19 #include "repo.h" 20 21 #ifdef __cplusplus 22 extern "C" { 23 #endif 24 25 extern int repo_add_solv(Repo *repo, FILE *fp, int flags); 26 27 #define SOLV_ADD_NO_STUBS (1 << 8) 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif /* LIBSOLV_REPO_SOLVE_H */ 34