windows.cfg: Improved support for _tolower()/_toupper() functions.

This commit is contained in:
Martin Ettl 2018-02-25 16:38:29 +01:00
parent 1df0ac15a3
commit 6af8aa63f6
1 changed files with 55 additions and 1 deletions

View File

@ -4882,6 +4882,33 @@ HFONT CreateFont(
<valid>0:255</valid>
</arg>
</function>
<!-- int _tolower_l(int c, _locale_t locale); -->
<function name="_tolower_l">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<valid>0:255</valid>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- int _towlower_l(wint_t c, _locale_t locale ); -->
<function name="_towlower_l">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- int _toupper(int c); -->
<function name="_toupper">
<use-retval/>
@ -4892,7 +4919,34 @@ HFONT CreateFont(
<not-uninit/>
<valid>0:255</valid>
</arg>
</function>
</function>
<!-- int _toupper_l(int c, _locale_t locale); -->
<function name="_toupper_l">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<valid>0:255</valid>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- int _towupper_l(wint_t c, _locale_t locale ); -->
<function name="_towupper_l">
<use-retval/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</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"/>