sys/windows: add RegSetValueExW

This commit is contained in:
hikari
2022-06-03 07:57:21 +03:00
parent a2e0373934
commit 592e9afa5f

View File

@@ -110,4 +110,13 @@ foreign advapi32 {
pvData: PVOID,
pcbData: LPDWORD,
) -> LSTATUS ---
RegSetValueExW :: proc(
hKey: HKEY,
lpValueName: LPCWSTR,
Reserved: DWORD,
dwType: DWORD,
lpData: ^BYTE,
cbData: DWORD,
) -> LSTATUS ---
}