Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

SDL_TimeToWindows - Converts an SDL time into a Windows FILETIME (100-nanosecond intervals since January

Availability

       This function is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.20                               SDL_TimeToWindows(3)

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.

Name

       SDL_TimeToWindows  - Converts an SDL time into a Windows FILETIME (100-nanosecond intervals since January
       1, 1601).

Synopsis

#include<SDL3/SDL_time.h>voidSDL_TimeToWindows(SDL_Timeticks,Uint32*dwLowDateTime,Uint32*dwHighDateTime);

See Also