windows.cfg: Added strtok_s and wcstok_s

This commit is contained in:
orbitcowboy 2015-11-25 09:53:10 +01:00
parent 6fe686a82a
commit 78bd49c2ba
1 changed files with 18 additions and 0 deletions

View File

@ -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,