windows.cfg: Added support for _itoa_s()-functions.

This commit is contained in:
orbitcowboy 2019-06-20 15:25:05 +02:00
parent 952a4becf6
commit 3b3e7fd382
1 changed files with 48 additions and 0 deletions

View File

@ -5630,6 +5630,54 @@ HFONT CreateFont(
<not-uninit/>
</arg>
</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 ); -->
<function name="_mbscat_s,_tcscat_s">
<returnValue type="errno_t"/>