- add new flags for the load functions:
[platform/upstream/libsolv.git] / src / repo_solv.h
index da76a3b..e3e63a5 100644 (file)
@@ -7,23 +7,26 @@
 
 /*
  * repo_solv.h
- * 
+ *
  */
 
-#ifndef REPO_SOLVE_H
-#define REPO_SOLVE_H
+#ifndef SATSOLVER_REPO_SOLVE_H
+#define SATSOLVER_REPO_SOLVE_H
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+#include <stdio.h>
+
 #include "pool.h"
 #include "repo.h"
 
-extern Repo *pool_addrepo_solv(Pool *pool, FILE *fp, const char *name);
+extern int repo_add_solv(Repo *repo, FILE *fp);
+extern int repo_add_solv_flags(Repo *repo, FILE *fp, int flags);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* REPO_SOLVE_H */
+#endif /* SATSOLVER_REPO_SOLVE_H */