windows.cfg: Added support for _mbscmp_l().

This commit is contained in:
orbitcowboy 2022-05-25 13:29:14 +02:00
parent 1ed280fe63
commit 0be9863c85
1 changed files with 19 additions and 0 deletions

View File

@ -2602,6 +2602,25 @@ HFONT CreateFont(
<strz/>
</arg>
</function>
<!-- int _mbscmp_l(const unsigned char *string1, const unsigned char *string2, _locale_t locale); -->
<function name="_mbscmp_l,_tscmp_l">
<use-retval/>
<pure/>
<noreturn>false</noreturn>
<returnValue type="int"/>
<leak-ignore/>
<arg nr="1" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
<arg nr="3" direction="in"/>
</function>
<!-- int _snprintf(char *s, size_t n, const char *format, ...);
int _snwprintf(wchar_t *buffer, size_t count, const wchar_t *format, ...);-->
<function name="_snprintf,_snwprintf,_sntprintf">