sys/windows: add RegSetKeyValueW

This commit is contained in:
hikari
2022-06-16 22:54:59 +03:00
parent 9b7710488b
commit 665db0f778
+9
View File
@@ -119,4 +119,13 @@ foreign advapi32 {
lpData: ^BYTE,
cbData: DWORD,
) -> LSTATUS ---
RegSetKeyValueW :: proc(
hKey: HKEY,
lpSubKey: LPCWSTR,
lpValueName: LPCWSTR,
dwType: DWORD,
lpData: LPCVOID,
cbData: DWORD,
) -> LSTATUS ---
}