diff options
author | David Robillard <d@drobilla.net> | 2015-12-04 12:13:32 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-12-04 12:13:32 -0500 |
commit | c70109bccac680e32395f29df63510187b68b96d (patch) | |
tree | c8acf15b1ea34de93bbf5b30d611579e4e26635a /lv2/lv2plug.in/ns/ext/state/state.h | |
parent | 5c6465ba7988a36a75b1b78a38830297a4ec35cd (diff) | |
download | lv2-c70109bccac680e32395f29df63510187b68b96d.tar.xz |
Add LV2_STATE_ERR_NO_SPACE status flag
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/state/state.h')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/state/state.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lv2/lv2plug.in/ns/ext/state/state.h b/lv2/lv2plug.in/ns/ext/state/state.h index 1b08852..d446b30 100644 --- a/lv2/lv2plug.in/ns/ext/state/state.h +++ b/lv2/lv2plug.in/ns/ext/state/state.h @@ -103,7 +103,8 @@ typedef enum { LV2_STATE_ERR_BAD_TYPE = 2, /**< Failed due to unsupported type. */ LV2_STATE_ERR_BAD_FLAGS = 3, /**< Failed due to unsupported flags. */ LV2_STATE_ERR_NO_FEATURE = 4, /**< Failed due to missing features. */ - LV2_STATE_ERR_NO_PROPERTY = 5 /**< Failed due to missing property. */ + LV2_STATE_ERR_NO_PROPERTY = 5, /**< Failed due to missing property. */ + LV2_STATE_ERR_NO_SPACE = 6 /**< Failed due to insufficient space. */ } LV2_State_Status; /** |