Firelight Technologies FMOD Studio API
FMOD_GUID
Structure describing a globally unique identifier.
C/C++ Syntax
typedef struct {
unsigned int Data1;
unsigned short Data2;
unsigned short Data3;
unsigned char Data4[8];
} FMOD_GUID;
JavaScript Syntax
struct FMOD_GUID
{
Data1,
Data2,
Data3,
Data4,
};
Members
Data1
Specifies the first 8 hexadecimal digits of the GUID
Data2
Specifies the first group of 4 hexadecimal digits.
Data3
Specifies the second group of 4 hexadecimal digits.
Data4
Array of 8 bytes. The first 2 bytes contain the third group of 4 hexadecimal digits. The remaining 6 bytes contain the final 12 hexadecimal digits.
Remarks
JavaScript only :
Not all fields are currently supported or may not work as expected at this time. To initialize an new instance in javascript use "FMOD.GUID()", no 'new' keyword is required.
See Also
Version 1.10.03 Built on Feb 1, 2018