windows.cfg: Added support for _itoa_s()-functions.
This commit is contained in:
parent
952a4becf6
commit
3b3e7fd382
|
@ -5630,6 +5630,54 @@ HFONT CreateFont(
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- errno_t _itoa_s( int value, char * buffer, size_t size, int radix ); -->
|
||||||
|
<!-- errno_t _ltoa_s( long value, char * buffer, size_t size, int radix ); -->
|
||||||
|
<!-- errno_t _ultoa_s( unsigned long value, char * buffer, size_t size, int radix ); -->
|
||||||
|
<!-- errno_t _i64toa_s( long long value, char *buffer, size_t size, int radix ); -->
|
||||||
|
<!-- errno_t _ui64toa_s( unsigned long long value, char *buffer, size_t size, int radix ); -->
|
||||||
|
<function name="_itoa_s,_ltoa_s,_ultoa_s,_i64toa_s,_ui64toa_s">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="errno_t"/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2" direction="out">
|
||||||
|
<not-null/>
|
||||||
|
<strz/>
|
||||||
|
<minsize type="argvalue" arg="3"/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="4" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<valid>2:36</valid>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
|
<!-- errno_t _itow_s( int value, wchar_t *buffer, size_t size, int radix );
|
||||||
|
errno_t _ltow_s( long value, wchar_t *buffer, size_t size, int radix );
|
||||||
|
errno_t _ultow_s( unsigned long value, wchar_t *buffer, size_t size, int radix );
|
||||||
|
errno_t _i64tow_s( long long value, wchar_t *buffer, size_t size, int radix );
|
||||||
|
errno_t _ui64tow_s( unsigned long long value, wchar_t *buffer, size_t size, int radix); -->
|
||||||
|
<function name="_itow_s,_ltow_s,_ultow_s,_i64tow_s,_ui64tow_s">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="errno_t"/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2" direction="out">
|
||||||
|
<not-null/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="4" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<valid>2:36</valid>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- errno_t _mbscat_s(unsigned char *strDestination, size_t numberOfElements, const unsigned char *strSource ); -->
|
<!-- errno_t _mbscat_s(unsigned char *strDestination, size_t numberOfElements, const unsigned char *strSource ); -->
|
||||||
<function name="_mbscat_s,_tcscat_s">
|
<function name="_mbscat_s,_tcscat_s">
|
||||||
<returnValue type="errno_t"/>
|
<returnValue type="errno_t"/>
|
||||||
|
|
Loading…
Reference in New Issue