windows.cfg: Added support for _localtime32() and _localtime64(). Ref.: https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/localtime-localtime32-localtime64?view=msvc-170
This commit is contained in:
parent
e54ad24d2c
commit
ae6f1f7ceb
|
@ -4528,6 +4528,18 @@ HFONT CreateFont(
|
||||||
<not-bool/>
|
<not-bool/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- struct tm *_localtime32( const __time32_t *sourceTime );
|
||||||
|
struct tm *_localtime64( const __time64_t *sourceTime ); -->
|
||||||
|
<function name="_localtime32,_localtime64">
|
||||||
|
<returnValue type="struct tm *"/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<use-retval/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-null/>
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- errno_t _localtime32_s( struct tm* _tm, const __time32_t *time);
|
<!-- errno_t _localtime32_s( struct tm* _tm, const __time32_t *time);
|
||||||
errno_t _localtime64_s( struct tm* _tm, const __time64_t *time); -->
|
errno_t _localtime64_s( struct tm* _tm, const __time64_t *time); -->
|
||||||
<function name="_localtime32_s,_localtime64_s">
|
<function name="_localtime32_s,_localtime64_s">
|
||||||
|
|
Loading…
Reference in New Issue