DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit fbbfe11a5bb1a9d02f9fa7a341caae7e7d532e7e
parent ad055720fc348478717037017edb003072278d6d
Author: falkTX <falktx@falktx.com>
Date:   Sat,  6 Nov 2021 20:32:48 +0000

Add missing LV2_STATE_ERR_NO_SPACE to pre-included LV2 headers

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/src/lv2/state.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/distrho/src/lv2/state.h b/distrho/src/lv2/state.h @@ -99,7 +99,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; /**