|
SDL3pp
A slim C++ wrapper for SDL3
|
A GUID is a 128-bit value that represents something that is uniquely identifiable by this value: "globally unique.". More...
Classes | |
| struct | SDL::GUID |
| An GUID is a 128-bit identifier for an input device that identifies that device across runs of SDL programs on the same platform. More... | |
Typedefs | |
| using | SDL::GUIDRaw = SDL_GUID |
| Alias to raw representation for GUID. | |
Functions | |
| std::string | SDL::GUIDToString (const GUIDRaw &guid) |
| Get an ASCII string representation for a given GUID. | |
| GUID | SDL::StringToGUID (StringParam pchGUID) |
| Convert a GUID string into a GUID structure. | |
| std::string | SDL::GUID::ToString () const |
| Get an ASCII string representation for a given GUID. | |
| SDL::GUID::GUID (StringParam pchGUID) | |
| Convert a GUID string into a GUID structure. | |
A GUID is a 128-bit value that represents something that is uniquely identifiable by this value: "globally unique.".
|
inline |
Convert a GUID string into a GUID structure.
Performs no error checking. If this function is given a string containing an invalid GUID, the function will silently succeed, but the GUID generated will not be useful.
| pchGUID | string containing an ASCII representation of a GUID. |
|
inline |
Get an ASCII string representation for a given GUID.
| guid | the GUID you wish to convert to string. |
|
inline |
Convert a GUID string into a GUID structure.
Performs no error checking. If this function is given a string containing an invalid GUID, the function will silently succeed, but the GUID generated will not be useful.
| pchGUID | string containing an ASCII representation of a GUID. |
|
inline |
Get an ASCII string representation for a given GUID.