windows.cfg: Improved support for string compar functions.
This commit is contained in:
parent
f31e2e6696
commit
16f9e1646c
|
@ -1786,12 +1786,30 @@
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int _stricmp_l(const char *string1, const char *string2, _locale_t locale); -->
|
||||
<!-- int _wcsicmp_l(const wchar_t *string1, const wchar_t *string2, _locale_t locale); -->
|
||||
<!-- int _mbsicmp_l(const wchar_t *string1, const wchar_t *string2, _locale_t locale); -->
|
||||
<function name="_stricmp_l,_wcsicmp_l,_mbsicmp_l">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<not-null/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
<not-null/>
|
||||
</arg>
|
||||
<arg nr="3">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int stricmp(const char *s1, const char *s2); -->
|
||||
<!-- int _stricmp(const char *s1, const char *s2); -->
|
||||
<!-- int wcsicmp(const wchar_t *s1, const wchar_t *s2); -->
|
||||
<!-- int _wcsicmp(const wchar_t *s1, const wchar_t *s2); -->
|
||||
<!-- int _mbsicmp(const unsigned char *string1, const unsigned char *string2); -->
|
||||
<function name="stricmp,_stricmp,wcsicmp,_wcsicmp,_mbsicmp">
|
||||
<function name="stricmp,_stricmp,wcsicmp,_wcsicmp,_mbsicmp,_tcsicmp">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
|
|
Loading…
Reference in New Issue