Firelight Technologies FMOD Studio API
Studio::parseID
Parses an ID (a 128-bit GUID) from a string.
C++ Syntax
FMOD_RESULT Studio::parseID(
const char *idString,
FMOD_GUID *id
);
C Syntax
FMOD_RESULT FMOD_Studio_ParseID(
const char *idString,
FMOD_GUID *id
);
C# Syntax
static RESULT Studio.Util.ParseID(
string idString,
out Guid id
);
Parameters
idString
The string representation of the ID.
id
Address of a variable to receive the parsed ID.
Return Values
If the function succeeds then the return value is FMOD_OK.
If the function fails then the return value will be one of the values defined in the FMOD_RESULT enumeration.
Remarks
This function expects a string representation of a GUID in the following exact format: "{9d348364-8145-4724-b337-5bc9b2afe60f}".
See Also
Version 1.10.03 Built on Feb 1, 2018