table of contents
other versions
- trixie 3.2.10+ds-1
- testing 3.4.2+ds-1
- unstable 3.4.2+ds-1
- experimental 3.5~git20260304~c20a058+ds-1
| SDL_TimeFromWindows(3) | SDL3 FUNCTIONS | SDL_TimeFromWindows(3) |
NAME¶
SDL_TimeFromWindows - Converts a Windows FILETIME (100-nanosecond intervals since January 1, 1601) to an SDL time.
SYNOPSIS¶
#include <SDL3/SDL_time.h>
SDL_Time SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime);
DESCRIPTION¶
This function takes the two 32-bit values of the FILETIME structure as parameters.
FUNCTION PARAMETERS¶
- dwLowDateTime
- the low portion of the Windows FILETIME value.
- dwHighDateTime
- the high portion of the Windows FILETIME value.
RETURN VALUE¶
Returns the converted SDL time.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
| SDL 3.4.2 | Simple Directmedia Layer |