Set variable information
#include <qvm/utils.h>
struct qvm_setvar_info {
struct qvm_setvar_info* next;
const char* name;
void (*set)(void *ctx, union qvm_setvar_value val);
enum qvm_setvar_context context;
enum qvm_setvar_type type;
} ;
A pointer to the next qvm_setvar_info structure.
A pointer to a human-readable name for the variable.
A pointer to the qvm_setvar_value union structure.
The qvm_setvar_context enum.
The qvm_setvar_type enum.