How to use the enumValueNames function from bindings
Find comprehensive JavaScript bindings.enumValueNames code examples handpicked from public code repositorys.
GitHub: danielgindi/native-reg
142 143 144 145 146 147 148 149 150 151
return native.enumKeyNames(hkey); } export function enumValueNames(hkey: HKEY): string[] { assert(isHKEY(hkey)); return native.enumValueNames(hkey); } export function queryValueRaw(hkey: HKEY, valueName: string): Value | null { assert(isHKEY(hkey));
7
0
3
bindings.createKey is the most popular function in bindings (8616 examples)