Registry_set_root - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets the root for the other registry routines.
| Value | Description |
|---|---|
| 0 | HKEY_CURRENT_USER |
| 1 | HKEY_LOCAL_MACHINE |
| 2 | HKEY_CLASSES_ROOT |
| 3 | HKEY_USERS |
Parameters
| Parameter | Data Type | Description |
|---|---|---|
| root | integer | any value from the table above |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting the registry root
registry_set_root(0);
NOTOC