diff options
author | David Robillard <d@drobilla.net> | 2010-10-17 01:06:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-17 01:06:20 +0000 |
commit | 1bde548b3c2c0ae5ce5a8f849ada96c2e8735217 (patch) | |
tree | 07b7730093fa8d2718e858ffb183693bd6a4f739 /ext/contexts.lv2/contexts.h | |
parent | 30dcbd963e9223b9cfc1a8e368a2e1c89412e679 (diff) | |
download | lv2-1bde548b3c2c0ae5ce5a8f849ada96c2e8735217.tar.xz |
Significantly simplify contexts extension.
Diffstat (limited to 'ext/contexts.lv2/contexts.h')
-rw-r--r-- | ext/contexts.lv2/contexts.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/contexts.lv2/contexts.h b/ext/contexts.lv2/contexts.h index c6e8ef2..9ed2ab5 100644 --- a/ext/contexts.lv2/contexts.h +++ b/ext/contexts.lv2/contexts.h @@ -62,9 +62,9 @@ typedef struct { * iff the value at that port has changed. * The plugin must return 1 if outputs have been written, 0 otherwise. */ - uint32_t (*message_run)(LV2_Handle instance, - const void* valid_inputs, - void* valid_outputs); + uint32_t (*run)(LV2_Handle instance, + const void* valid_inputs, + void* valid_outputs); } LV2_Contexts_MessageContext; |