windows.cfg: Added support for _toupper() and _tolower().

This commit is contained in:
Martin Ettl 2018-02-25 13:30:12 +01:00
parent 1628405869
commit 1df0ac15a3
1 changed files with 22 additions and 0 deletions

View File

@ -4871,6 +4871,28 @@ HFONT CreateFont(
<not-bool/>
</arg>
</function>
<!-- int _tolower(int c); -->
<function name="_tolower">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<valid>0:255</valid>
</arg>
</function>
<!-- int _toupper(int c); -->
<function name="_toupper">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<valid>0:255</valid>
</arg>
</function>
<podtype name="LARGE_INTEGER" sign="s" size="8"/>
<podtype name="POINTER_SIGNED" sign="s"/>
<podtype name="POINTER_UNSIGNED" sign="u"/>