mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
fix RegQueryValueExW api
This commit is contained in:
parent
d3c9bfada6
commit
5f70c36fa8
1 changed files with 4 additions and 4 deletions
|
|
@ -21,10 +21,10 @@ pub extern "advapi32" fn RegOpenKeyExW(
|
|||
pub extern "advapi32" fn RegQueryValueExW(
|
||||
hKey: HKEY,
|
||||
lpValueName: LPCWSTR,
|
||||
lpReserved: *DWORD,
|
||||
lpType: *DWORD,
|
||||
lpData: *BYTE,
|
||||
lpcbData: *DWORD,
|
||||
lpReserved: ?*DWORD,
|
||||
lpType: ?*DWORD,
|
||||
lpData: ?*BYTE,
|
||||
lpcbData: ?*DWORD,
|
||||
) callconv(WINAPI) LSTATUS;
|
||||
|
||||
// RtlGenRandom is known as SystemFunction036 under advapi32
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue