RegSaveKey function advapi32
int
RegSaveKey(
- int hKey,
- Pointer<
Utf16> lpFile, - Pointer<
SECURITY_ATTRIBUTES> lpSecurityAttributes
Saves the specified key and all of its subkeys and values to a new file, in the standard format.
LSTATUS RegSaveKeyW(
HKEY hKey,
LPCWSTR lpFile,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes);
Implementation
int RegSaveKey(int hKey, Pointer<Utf16> lpFile,
Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes) =>
_RegSaveKey(hKey, lpFile, lpSecurityAttributes);