registry_read_string_ext(key,name)

From ENIGMA
Jump to navigation Jump to search

Description

Gets the string value of the given name of the given key in the registry and returns the result.

Parameters

Parameter Data Type Description
key string the key of the registry name
name string the name of the registry value

Return Values

string: Returns the value of the registry name, or a null terminated string if it does not exist.

Example Call

// demonstrates reading the string value of a name in a key from the registry
var val;
val = registry_read_string_ext("","");