How to use the openKey function from bindings
Find comprehensive JavaScript bindings.openKey code examples handpicked from public code repositorys.
GitHub: danielgindi/native-reg
121 122 123 124 125 126 127 128 129 130
): HKEY | null { assert(isHKEY(hkey)); assert(typeof subKey === 'string'); assert(typeof options === 'number'); assert(typeof access === 'number'); return native.openKey(hkey, subKey, options, access); } export function openCurrentUser(access: Access = Access.ALL_ACCESS): HKEY { assert(typeof access === 'number');
7
0
3
bindings.createKey is the most popular function in bindings (8616 examples)