qvm_setvar_info_t

Data type for storing set variable information

Synopsis:

#include <qvm/utils.h>
typedef struct qvm_setvar_info {
    struct qvm_setvar_info* next;
    const char* name;
    void (*set)(void *ctx, qvm_setvar_value_t val);
    qvm_setvar_context_t context;
    qvm_setvar_type_t type;
} qvm_setvar_info_t;

Data:

struct qvm_setvar_info* next
A pointer to the next qvm_setvar_info_t structure.
const char* name
A pointer to a human-readable name for the set variable.
void (*set)(void *ctx, qvm_setvar_value_t val)
A pointer to the set variable information.
qvm_setvar_context_t context
The set variable context.
qvm_setvar_type_t type
The set variable type.

Library:

qvm
Page updated: