diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/event')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/event/event.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/ext/event/event.h b/lv2/lv2plug.in/ns/ext/event/event.h index aeb1332..e33d862 100644 --- a/lv2/lv2plug.in/ns/ext/event/event.h +++ b/lv2/lv2plug.in/ns/ext/event/event.h @@ -51,6 +51,10 @@ #include <stdint.h> +#ifdef __cplusplus +extern "C" { +#endif + /** The best Pulses Per Quarter Note for tempo-based uint32_t timestamps. Equal to 2^12 * 5 * 7 * 9 * 11 * 13 * 17, which is evenly divisble @@ -283,5 +287,8 @@ typedef struct { LV2_Event* event); } LV2_Event_Feature; +#ifdef __cplusplus +} /* extern "C" */ +#endif #endif /* LV2_EVENT_H */ |