windows.cfg: Add Sleep and SleepEx (#1007)

Add configuration for Sleep and SleepEx on Windows.
Not sure how to implement that the functions do not return when the first parameter is INFINITE.
This commit is contained in:
Sebastian 2017-11-29 08:22:13 +01:00 committed by Daniel Marjamäki
parent 6c50dafbac
commit e9815bd523
1 changed files with 25 additions and 0 deletions

View File

@ -3605,6 +3605,31 @@ HFONT CreateFont(
<noreturn>false</noreturn>
<leak-ignore/>
</function>
<!--VOID WINAPI Sleep(
_In_ DWORD dwMilliseconds);-->
<function name="Sleep">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!--DWORD WINAPI SleepEx(
_In_ DWORD dwMilliseconds,
_In_ BOOL bAlertable);-->
<function name="SleepEx">
<noreturn>false</noreturn>
<returnValue type="DWORD"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<podtype name="LARGE_INTEGER" sign="s" size="8"/>
<podtype name="POINTER_SIGNED" sign="s"/>
<podtype name="POINTER_UNSIGNED" sign="u"/>