Function SDL_GUIDToString

pub unsafe extern "C" fn SDL_GUIDToString(
    guid: SDL_GUID,
    pszGUID: *mut i8,
    cbGUID: i32,
)
Available on crate feature dep_sdl3 only.
Expand description

Get an ASCII string representation for a given SDL_GUID.

§Parameters

  • guid: the SDL_GUID you wish to convert to string.
  • pszGUID: buffer in which to write the ASCII string.
  • cbGUID: the size of pszGUID, should be at least 33 bytes.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also