How to use the enumKeyNames function from bindings
Find comprehensive JavaScript bindings.enumKeyNames code examples handpicked from public code repositorys.
GitHub: danielgindi/native-reg
137 138 139 140 141 142 143 144 145 146
return native.loadAppKey(file, access); } export function enumKeyNames(hkey: HKEY): string[] { assert(isHKEY(hkey)); return native.enumKeyNames(hkey); } export function enumValueNames(hkey: HKEY): string[] { assert(isHKEY(hkey));
7
0
3
bindings.createKey is the most popular function in bindings (8616 examples)