RegCreateKeyTransacted function advapi32
Establishes a connection to a predefined registry key on another computer.
LSTATUS RegCreateKeyTransactedW(
HKEY hKey,
LPCWSTR lpSubKey,
DWORD Reserved,
LPWSTR lpClass,
DWORD dwOptions,
REGSAM samDesired,
const LPSECURITY_ATTRIBUTES lpSecurityAttributes,
PHKEY phkResult,
LPDWORD lpdwDisposition,
HANDLE hTransaction,
PVOID pExtendedParemeter);
Implementation
int RegCreateKeyTransacted(
int hKey,
Pointer<Utf16> lpSubKey,
int Reserved,
Pointer<Utf16> lpClass,
int dwOptions,
int samDesired,
Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
Pointer<IntPtr> phkResult,
Pointer<Uint32> lpdwDisposition,
int hTransaction,
Pointer pExtendedParemeter) =>
_RegCreateKeyTransacted(
hKey,
lpSubKey,
Reserved,
lpClass,
dwOptions,
samDesired,
lpSecurityAttributes,
phkResult,
lpdwDisposition,
hTransaction,
pExtendedParemeter);