windows.cfg: Added support for SetStdHandle and GetStdHandle.

This commit is contained in:
orbitcowboy 2016-08-09 11:16:09 +02:00
parent db5e40b870
commit 16271ffe45
1 changed files with 20 additions and 0 deletions

View File

@ -2095,6 +2095,26 @@ HFONT CreateFont(
<not-uninit/>
</arg>
</function>
<!-- HANDLE WINAPI GetStdHandle(_In_ DWORD nStdHandle); -->
<function name="GetStdHandle">
<use-retval/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
</function>
<!-- BOOL WINAPI SetStdHandle(_In_ DWORD nStdHandle, _In_ HANDLE hHandle); -->
<function name="SetStdHandle">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- int _access(const char *path, int mode);
int _waccess(const wchar_t *path, int mode); -->
<function name="_access,_waccess,_taccess">