windows.cfg: Added strtok_s and wcstok_s
This commit is contained in:
parent
6fe686a82a
commit
78bd49c2ba
|
@ -1584,6 +1584,24 @@
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- char *strtok_s(char *strToken, const char *strDelimit, char **context); -->
|
||||
<!-- wchar_t *wcstok_s(wchar_t *strToken, const wchar_t *strDelimit, wchar_t**context); -->
|
||||
<function name="strtok_s,wcstok_s">
|
||||
<!-- strtok may modify the first argument, so using the return value is not mandatory -->
|
||||
<noreturn>false</noreturn>
|
||||
<pure/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="3">
|
||||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<!--
|
||||
HFONT CreateFont(
|
||||
_In_ int nHeight,
|
||||
|
|
Loading…
Reference in New Issue