GIR - Getting the type of an "array"

For items in GIR with an InfoType name of “array”, is it possible to retrieve the the type of the array’s elements?

If g_type_info_get_tag returns GI_TYPE_TAG_ARRAY then you can use
g_type_info_get_param_type to get the element type. An array has only one element parameter so the parameter index is always 0.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.