mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
add missing stdcallcc to ExitProcess decl
This commit is contained in:
parent
ad9f48b74b
commit
57fb8efde2
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ pub extern "kernel32" stdcallcc fn CryptReleaseContext(hProv: HCRYPTPROV, dwFlag
|
||||||
|
|
||||||
pub extern "kernel32" stdcallcc fn CryptGenRandom(hProv: HCRYPTPROV, dwLen: DWORD, pbBuffer: &BYTE) -> bool;
|
pub extern "kernel32" stdcallcc fn CryptGenRandom(hProv: HCRYPTPROV, dwLen: DWORD, pbBuffer: &BYTE) -> bool;
|
||||||
|
|
||||||
pub extern "kernel32" fn ExitProcess(exit_code: UINT) -> noreturn;
|
pub extern "kernel32" stdcallcc fn ExitProcess(exit_code: UINT) -> noreturn;
|
||||||
|
|
||||||
pub extern "kernel32" stdcallcc fn GetCommandLine() -> LPTSTR;
|
pub extern "kernel32" stdcallcc fn GetCommandLine() -> LPTSTR;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue