windows.cfg: Added support for _stricmp-functions

This commit is contained in:
orbitcowboy 2022-01-25 08:28:27 +01:00
parent 7d26cb68d9
commit 87b7243a9f
1 changed files with 41 additions and 0 deletions

View File

@ -3305,6 +3305,47 @@ HFONT CreateFont(
<not-uninit/>
</arg>
</function>
<!-- int _stricmp(const char *str1, const char *str2); -->
<!-- int _wcsicmp(const wchar_t *str1, const wchar_t *str2) -->
<!-- int _mbsicmp(const unsigned char *str1, const unsigned char *str2) -->
<function name="_stricmp,_wcsicmp,_mbsicmp,_tcsicmp">
<use-retval/>
<pure/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
</function>
<!-- int _stricmp_l(const char *str1, const char *str2, _locale_t locale); -->
<!-- int _wcsicmp_l(const wchar_t *str1, const wchar_t *str2, _locale_t locale) -->
<!-- int _mbsicmp_l(const unsigned char *str1, const unsigned char *str2, _locale_t locale) -->
<function name="_stricmp_l,_wcsicmp_l,_mbsicmp_l,_tcsicmp_l">
<use-retval/>
<pure/>
<returnValue type="int"/>
<noreturn>false</noreturn>
<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>
<!-- HWND WINAPI CreateWindow(
_In_opt_ LPCTSTR lpClassName,
_In_opt_ LPCTSTR lpWindowName,