logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_GUIDToString - Get an ASCII string representation for a given SDL_GUID .

Availability

       This function is available since SDL 3.2.0.

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

Header File

       Defined in SDL3/SDL_guid.h

Name

       SDL_GUIDToString - Get an ASCII string representation for a given SDL_GUID .

See Also

(3), SDL_StringToGUID(3)

Simple Directmedia Layer                           SDL 3.2.10                                SDL_GUIDToString(3)

Synopsis

#include"SDL3/SDL.h"voidSDL_GUIDToString(SDL_GUIDguid,char*pszGUID,intcbGUID);

Thread Safety

       It is safe to call this function from any thread.

See Also