windows.cfg: Added support for _iswctype(), which is obsolete according to https://docs.microsoft.com/en-us/cpp/c-runtime-library/obsolete-functions?view=msvc-160
This commit is contained in:
parent
f6e7a66f42
commit
4d7f906748
|
@ -1388,6 +1388,21 @@
|
|||
</arg>
|
||||
<warn severity="style" reason="Obsolete" alternatives="RtlFillMemory"/>
|
||||
</function>
|
||||
<!-- int _iswctype( wint_t wc, wctype_t desc ); -->
|
||||
<function name="_iswctype">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<warn severity="style" reason="Obsolete" alternatives="iswctype"/>
|
||||
</function>
|
||||
<!--PVOID RtlSecureZeroMemory(
|
||||
_Out_ PVOID ptr,
|
||||
_In_ SIZE_T cnt);-->
|
||||
|
|
Loading…
Reference in New Issue