Query signed integer (64bit) variable value in storage.
Syntax |
int64 get_int64(const string &in name) |
---|---|
name |
Variable name |
Result |
Returns value of variable found, 0 otherwise |
Example of use:
bool execute(shell::object @shell, const string &in cmdline) { // Query value of "my_var" int64 v = shell.storage.get_int64("my_var"); } |