| Updated: October 28, 2024 |
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.
The set variable context; see qvm_setvar_context for details.
The set variable type; see qvm_setvar_type for details.