Retrieves an interface specified by index.
ClassClass* __cdecl Class_GetInterface(ClassClass *cls, unsigned index);
Returns a pointer to a class interface object.
*cls | The address of the class object. Use FindClass to determine the class. |
index | The index value of the interface in the class. The index must be between 0 and the interface count (returned from Class_GetInterfaceCount) minus 1, inclusive. |