How to use the setValue function from bindings
Find comprehensive JavaScript bindings.setValue code examples handpicked from public code repositorys.
GitHub: danielgindi/native-reg
177 178 179 180 181 182 183 184 185 186
): void { assert(isHKEY(hkey)); assert(typeof valueName === 'string'); assert(typeof valueType === 'number'); assert(Buffer.isBuffer(data)); native.setValue(hkey, valueName, valueType, data); } export function deleteKey(hkey: HKEY, subKey: string): boolean { assert(isHKEY(hkey));
7
0
3
bindings.createKey is the most popular function in bindings (8616 examples)