diff options
author | 2024-12-27 01:55:34 +0100 | |
---|---|---|
committer | 2024-12-27 01:55:34 +0100 | |
commit | 440dbbbf615de11acdd8216df0e3676e8efb9ba1 (patch) | |
tree | 022ccc6da624af8406d6f54fccb050c03be80e8a /include/libimobiledevice-glue/glue.h | |
parent | 1d9046fbd02482cf44138038779847b9ea67c867 (diff) | |
download | libimobiledevice-glue-440dbbbf615de11acdd8216df0e3676e8efb9ba1.tar.gz libimobiledevice-glue-440dbbbf615de11acdd8216df0e3676e8efb9ba1.tar.bz2 |
Add extern "C" guards to public headers
Diffstat (limited to 'include/libimobiledevice-glue/glue.h')
-rw-r--r-- | include/libimobiledevice-glue/glue.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/libimobiledevice-glue/glue.h b/include/libimobiledevice-glue/glue.h index e1e9900..e0364e1 100644 --- a/include/libimobiledevice-glue/glue.h +++ b/include/libimobiledevice-glue/glue.h @@ -32,6 +32,14 @@ #endif #endif +#ifdef __cplusplus +extern "C" { +#endif + LIMD_GLUE_API const char* libimobiledevice_glue_version(); +#ifdef __cplusplus +} +#endif + #endif |