mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-04 01:51:06 +00:00
prefer using enum for LADSPA state
This commit is contained in:
parent
4911bc8de4
commit
1d0cfd605f
1 changed files with 6 additions and 3 deletions
|
@ -35,9 +35,12 @@
|
||||||
#define FLUID_LADSPA_MAX_NODES 100
|
#define FLUID_LADSPA_MAX_NODES 100
|
||||||
#define FLUID_LADSPA_MAX_PATH_LENGTH 512
|
#define FLUID_LADSPA_MAX_PATH_LENGTH 512
|
||||||
|
|
||||||
#define FLUID_LADSPA_INACTIVE (0)
|
typedef enum _fluid_ladspa_state_t {
|
||||||
#define FLUID_LADSPA_ACTIVE (1)
|
FLUID_LADSPA_INACTIVE = 0,
|
||||||
#define FLUID_LADSPA_RUNNING (2)
|
FLUID_LADSPA_ACTIVE,
|
||||||
|
FLUID_LADSPA_RUNNING
|
||||||
|
|
||||||
|
} fluid_ladspa_state_t;
|
||||||
|
|
||||||
typedef enum _fluid_ladspa_dir_t {
|
typedef enum _fluid_ladspa_dir_t {
|
||||||
FLUID_LADSPA_INPUT,
|
FLUID_LADSPA_INPUT,
|
||||||
|
|
Loading…
Reference in a new issue