table of contents
other versions
- trixie 3.2.10+ds-1
- testing 3.4.0+ds-1
- unstable 3.4.2+ds-1
- experimental 3.4.0+git20260203~8107d5b+ds-1
| SDL_TimeToWindows(3) | SDL3 FUNCTIONS | SDL_TimeToWindows(3) |
NAME¶
SDL_TimeToWindows - Converts an SDL time into a Windows FILETIME (100-nanosecond intervals since January 1, 1601).
SYNOPSIS¶
#include <SDL3/SDL_time.h>
void SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime);
DESCRIPTION¶
This function fills in the two 32-bit values of the FILETIME structure.
FUNCTION PARAMETERS¶
- ticks
- the time to convert.
- dwLowDateTime
- a pointer filled in with the low portion of the Windows FILETIME value.
- dwHighDateTime
- a pointer filled in with the high portion of the Windows FILETIME value.
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 |