diff options
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index 31913ad..4d20e4f 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -28,6 +28,7 @@ extern "C" { #include <inttypes.h> #include <librdf.h> #include <slv2/types.h> +#include <slv2/lv2-gtk2gui.h> @@ -97,6 +98,14 @@ struct _InstanceImpl { }; +/* ********* GUI Instance ********* */ +struct _GUIInstanceImpl { + void* lib_handle; + const LV2UI_Descriptor* lv2ui_descriptor; + LV2UI_Handle lv2ui_handle; + void* widget; +}; + /* ********* Plugin Class ********* */ |