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