Function SDL_TimeToWindows

pub unsafe extern "C" fn SDL_TimeToWindows(
    ticks: i64,
    dwLowDateTime: *mut u32,
    dwHighDateTime: *mut u32,
)
Available on crate feature dep_sdl3 only.
Expand description

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

This function fills in the two 32-bit values of the FILETIME structure.

§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.

§Availability

This function is available since SDL 3.2.0.