diff options
author | David Robillard <d@drobilla.net> | 2013-01-26 21:16:24 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-26 21:16:24 +0000 |
commit | 8fc9914200ae63c00182cdf6c535828c94848b1d (patch) | |
tree | 4f7aafe2b896c909a8c34bba04cd6ae287d75ff2 | |
parent | 8b8fd29712602c7352fee7763662f4fc103363a8 (diff) | |
download | lv2-8fc9914200ae63c00182cdf6c535828c94848b1d.tar.xz |
Define LV2_STATE__loadDefaultState.
-rw-r--r-- | lv2/lv2plug.in/ns/ext/state/state.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lv2/lv2plug.in/ns/ext/state/state.h b/lv2/lv2plug.in/ns/ext/state/state.h index ff53e56..6d055f5 100644 --- a/lv2/lv2plug.in/ns/ext/state/state.h +++ b/lv2/lv2plug.in/ns/ext/state/state.h @@ -31,11 +31,12 @@ #define LV2_STATE_URI "http://lv2plug.in/ns/ext/state" #define LV2_STATE_PREFIX LV2_STATE_URI "#" -#define LV2_STATE__State LV2_STATE_PREFIX "State" -#define LV2_STATE__interface LV2_STATE_PREFIX "interface" -#define LV2_STATE__makePath LV2_STATE_PREFIX "makePath" -#define LV2_STATE__mapPath LV2_STATE_PREFIX "mapPath" -#define LV2_STATE__state LV2_STATE_PREFIX "state" +#define LV2_STATE__State LV2_STATE_PREFIX "State" +#define LV2_STATE__interface LV2_STATE_PREFIX "interface" +#define LV2_STATE__loadDefaultState LV2_STATE_PREFIX "loadDefaultState" +#define LV2_STATE__makePath LV2_STATE_PREFIX "makePath" +#define LV2_STATE__mapPath LV2_STATE_PREFIX "mapPath" +#define LV2_STATE__state LV2_STATE_PREFIX "state" #ifdef __cplusplus extern "C" { |