diff options
-rw-r--r-- | ext/state.lv2/state.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/state.lv2/state.h b/ext/state.lv2/state.h index 6ada0e1..cb6f2fc 100644 --- a/ext/state.lv2/state.h +++ b/ext/state.lv2/state.h @@ -108,12 +108,12 @@ typedef enum { The plugin MUST NOT attempt to use this function outside of the LV2_State_Interface.restore() context. */ -typedef int (*LV2_State_Store_Function)(LV2_State_Handle* handle, - uint32_t key, - const void* value, - size_t size, - uint32_t type, - uint32_t flags); +typedef int (*LV2_State_Store_Function)(LV2_State_Handle handle, + uint32_t key, + const void* value, + size_t size, + uint32_t type, + uint32_t flags); /** A host-provided function to retrieve a property. |