mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.os.windows.advapi32: add RegLoadAppKeyW
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
This commit is contained in:
parent
a89b83cc9d
commit
664ecdfb8e
1 changed files with 8 additions and 0 deletions
|
|
@ -63,3 +63,11 @@ pub extern "advapi32" fn RegGetValueW(
|
||||||
pvData: ?*anyopaque,
|
pvData: ?*anyopaque,
|
||||||
pcbData: ?*DWORD,
|
pcbData: ?*DWORD,
|
||||||
) callconv(WINAPI) LSTATUS;
|
) callconv(WINAPI) LSTATUS;
|
||||||
|
|
||||||
|
pub extern "advapi32" fn RegLoadAppKeyW(
|
||||||
|
lpFile: LPCWSTR,
|
||||||
|
phkResult: *HKEY,
|
||||||
|
samDesired: REGSAM,
|
||||||
|
dwOptions: DWORD,
|
||||||
|
reserved: DWORD,
|
||||||
|
) callconv(WINAPI) LSTATUS;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue