diff options
Diffstat (limited to 'lv2/worker')
-rw-r--r-- | lv2/worker/worker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2/worker/worker.h b/lv2/worker/worker.h index f874d84..2c25425 100644 --- a/lv2/worker/worker.h +++ b/lv2/worker/worker.h @@ -71,7 +71,7 @@ typedef LV2_Worker_Status (*LV2_Worker_Respond_Function)( The plugin's extension_data() method should return an LV2_Worker_Interface when called with LV2_WORKER__interface as its argument. */ -typedef struct _LV2_Worker_Interface { +typedef struct { /** The worker method. This is called by the host in a non-realtime context as requested, possibly with an arbitrary message to handle. @@ -129,7 +129,7 @@ typedef void* LV2_Worker_Schedule_Handle; The host passes this feature to provide a schedule_work() function, which the plugin can use to schedule a worker call from run(). */ -typedef struct _LV2_Worker_Schedule { +typedef struct { /** Opaque host data. */ |