Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
char* pakfire_solution_to_string(PakfireSolution solution);
-#ifdef PAKFIRE_PRIVATE
-
-struct _PakfireSolution {
- PakfireProblem problem;
- Id id;
- char** elements;
-
- PakfireSolution next;
- int nrefs;
-};
-
-#endif
-
#endif /* PAKFIRE_SOLUTION_H */
#include <pakfire/solution.h>
#include <pakfire/util.h>
+struct _PakfireSolution {
+ PakfireProblem problem;
+ Id id;
+ char** elements;
+
+ PakfireSolution next;
+ int nrefs;
+};
+
static void import_elements(PakfireSolution solution) {
Solver* solver = pakfire_request_get_solver(solution->problem->request);
Pool* pool = solver->pool;