search for: ae0bd84

Displaying 2 results from an estimated 2 matches for "ae0bd84".

Did you mean: 420bd84
2016 Nov 08
0
[PATCH 2/3] Split internal stuff out of guestfs.h
...i.ml @@ -46,6 +46,7 @@ let rec generate_c_api_tests () = #include <errno.h> #include \"guestfs.h\" +#include \"guestfs-private.h\" #include \"guestfs-internal-frontend.h\" #include \"tests.h\" diff --git a/src/available.c b/src/available.c index ae0bd84..4609f34 100644 --- a/src/available.c +++ b/src/available.c @@ -22,6 +22,7 @@ #include <libintl.h> #include "guestfs.h" +#include "guestfs-private.h" #include "guestfs-internal.h" #include "guestfs-internal-actions.h" diff --git a/src/drives.c b...
2016 Nov 08
4
[PATCH 1/3] generator: c: move internal functions
Move the generate_all_structs and generate_all_headers functions, previously internal within the implementation of generate_guestfs_h, to be usable by other functions in the same "C" module (but not public). Only code motion. --- generator/c.ml | 163 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 82 insertions(+), 81 deletions(-) diff --git a/generator/c.ml