enum snd_config_type_t

Overview

Configuration node type. Moreā€¦

#include <conf.h>

enum snd_config_type_t {
    SND_CONFIG_TYPE_INTEGER,
    SND_CONFIG_TYPE_INTEGER64,
    SND_CONFIG_TYPE_REAL,
    SND_CONFIG_TYPE_STRING,
    SND_CONFIG_TYPE_POINTER,
    SND_CONFIG_TYPE_COMPOUND  = 1024,
};

Detailed Documentation

Configuration node type.

Enum Values

SND_CONFIG_TYPE_INTEGER

Integer number.

SND_CONFIG_TYPE_INTEGER64

64-bit integer number.

SND_CONFIG_TYPE_REAL

Real number.

SND_CONFIG_TYPE_STRING

Character string.

SND_CONFIG_TYPE_POINTER

Pointer (runtime only, cannot be saved).

SND_CONFIG_TYPE_COMPOUND

Compound node.