registry_write_real - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Writes the given real value to the given name in the registry, creating a new entry if it does not already exist or overwriting it if it does exist.
Parameter | Data Type | Description |
---|---|---|
name | string | the name of the registry value |
value | integer | the value to give the registry name |
void: This function does not return anything.
// demonstrates writing a real value to the registry
registry_write_real("myvalue", 5);
NOTOC