Browse Source

Add missing LV2_STATE_ERR_NO_SPACE to pre-included LV2 headers

Signed-off-by: falkTX <falktx@falktx.com>
pull/349/head
falkTX 3 years ago
parent
commit
fbbfe11a5b
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      distrho/src/lv2/state.h

+ 2
- 1
distrho/src/lv2/state.h View File

@@ -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;

/**


Loading…
Cancel
Save