add missing stdcallcc to ExitProcess decl

This commit is contained in:
Andrew Kelley 2017-08-06 16:13:52 -04:00
parent ad9f48b74b
commit 57fb8efde2

View file

@ -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" fn ExitProcess(exit_code: UINT) -> noreturn;
pub extern "kernel32" stdcallcc fn ExitProcess(exit_code: UINT) -> noreturn;
pub extern "kernel32" stdcallcc fn GetCommandLine() -> LPTSTR;