windows.cfg: Added support for _stricmp-functions
This commit is contained in:
parent
7d26cb68d9
commit
87b7243a9f
|
@ -3305,6 +3305,47 @@ HFONT CreateFont(
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</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(
|
<!-- HWND WINAPI CreateWindow(
|
||||||
_In_opt_ LPCTSTR lpClassName,
|
_In_opt_ LPCTSTR lpClassName,
|
||||||
_In_opt_ LPCTSTR lpWindowName,
|
_In_opt_ LPCTSTR lpWindowName,
|
||||||
|
|
Loading…
Reference in New Issue