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:
parent
6c50dafbac
commit
e9815bd523
|
@ -3605,6 +3605,31 @@ HFONT CreateFont(
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<leak-ignore/>
|
<leak-ignore/>
|
||||||
</function>
|
</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="LARGE_INTEGER" sign="s" size="8"/>
|
||||||
<podtype name="POINTER_SIGNED" sign="s"/>
|
<podtype name="POINTER_SIGNED" sign="s"/>
|
||||||
<podtype name="POINTER_UNSIGNED" sign="u"/>
|
<podtype name="POINTER_UNSIGNED" sign="u"/>
|
||||||
|
|
Loading…
Reference in New Issue