How to use the loadAppKey function from bindings
Find comprehensive JavaScript bindings.loadAppKey code examples handpicked from public code repositorys.
GitHub: danielgindi/native-reg
132 133 134 135 136 137 138 139 140 141
} export function loadAppKey(file: string, access: Access): HKEY | null { assert(typeof file === 'string'); assert(typeof access === 'number'); return native.loadAppKey(file, access); } export function enumKeyNames(hkey: HKEY): string[] { assert(isHKEY(hkey));
7
0
3
bindings.createKey is the most popular function in bindings (8616 examples)