mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 12:59:04 +00:00
std/os/windows/advapi32.zig: add SystemFunction036;
Tracking Issue #1318 ;
This commit is contained in:
parent
e66f538972
commit
22fd359e2c
@ -28,3 +28,8 @@ pub extern "advapi32" stdcallcc fn RegOpenKeyExW(hKey: HKEY, lpSubKey: LPCWSTR,
|
||||
|
||||
pub extern "advapi32" stdcallcc fn RegQueryValueExW(hKey: HKEY, lpValueName: LPCWSTR, lpReserved: LPDWORD,
|
||||
lpType: LPDWORD, lpData: LPBYTE, lpcbData: LPDWORD,) LSTATUS;
|
||||
|
||||
// RtlGenRandom is known as SystemFunction036 under advapi32
|
||||
// http://msdn.microsoft.com/en-us/library/windows/desktop/aa387694.aspx */
|
||||
pub extern "advapi32" stdcallcc fn SystemFunction036(output: PVOID, length: ULONG_PTR) BOOL;
|
||||
pub const RtlGenRandom = SystemFunction036;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user