pub unsafe extern "C" fn SDL_GUIDToString(
guid: SDL_GUID,
pszGUID: *mut c_char,
cbGUID: c_int,
)Expand description
Get an ASCII string representation for a given SDL_GUID.
Parameter: guid the SDL_GUID you wish to convert to string. Parameter: pszGUID buffer in which to write the ASCII string. Parameter: cbGUID the size of pszGUID, should be at least 33 bytes.
Thread Safety: It is safe to call this function from any thread.
Available Since: This function is available since SDL 3.2.0.
See Also: SDL_StringToGUID