windows.cfg: Added support for _mbsrchr().

This commit is contained in:
orbitcowboy 2017-02-23 13:43:30 +01:00
parent b4733a76bd
commit fef52f2ea1
2 changed files with 34 additions and 0 deletions

View File

@ -3411,6 +3411,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<strz/>
</arg>
<arg nr="2">
<not-uninit/>
<valid>0:255</valid>
</arg>
</function>

View File

@ -3351,4 +3351,37 @@ HFONT CreateFont(
<strz/>
</arg>
</function>
<!-- unsigned char *_mbsrchr_l(const unsigned char *str, unsigned int c, _locale_t locale ); // C only
unsigned char *_mbsrchr_(unsigned char *str, unsigned int c, _locale_t locale ); // C++ only
const unsigned char *_mbsrchr_(const unsigned char *str, unsigned int c, _locale_t locale ); // C++ only-->
<function name="_mbsrchr_l">
<use-retval/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
<arg nr="3">
<not-uninit/>
</arg>
</function>
<!-- unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C only
unsigned char *_mbsrchr(unsigned char *str, unsigned int c); // C++ only
const unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C++ only-->
<function name="_mbsrchr,_tcsrchr">
<use-retval/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
</def>