From 6397feeb74af9c750b0430bc88f0855b1f7f1d28 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 20 Apr 2009 16:52:13 +0100 Subject: [PATCH] Include the __cplusplus header magic so API really callable from C++. --- src/guestfs.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/guestfs.h b/src/guestfs.h index 823fefe..b5ed0f7 100644 --- a/src/guestfs.h +++ b/src/guestfs.h @@ -26,6 +26,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + typedef struct guestfs_h guestfs_h; typedef struct guestfs_main_loop guestfs_main_loop; @@ -120,4 +124,8 @@ extern guestfs_main_loop *guestfs_get_default_main_loop (void); extern guestfs_main_loop *guestfs_create_main_loop (void); extern void guestfs_free_main_loop (guestfs_main_loop *); +#ifdef __cplusplus +} +#endif + #endif /* GUESTFS_H_ */ -- 1.8.3.1