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