Get the list of audio object IDs associated to an event. - Event ID - Number of items in array provided / Number of items filled in array - Array of AkObjectInfo items to fill AK_Success if succeeded, AK_IDNotFound if the eventID cannot be found, AK_InvalidPa
| 891 | /// <param name="out_aObjectInfos"> - Array of AkObjectInfo items to fill</param> |
| 892 | /// <returns>AK_Success if succeeded, AK_IDNotFound if the eventID cannot be found, AK_InvalidParameter if out_aObjectInfos is NULL while io_ruNumItems > 0 or AK_UnknownObject if the event contains an unknown audio object, or AK_PartialSuccess if io_ruNumItems was set to 0 to query the number of available items.</returns> |
| 893 | AKRESULT QueryAudioObjectIDs(AkUniqueID in_eventID, AkUInt32* io_ruNumItems, AkObjectInfo* out_aObjectInfos) { |
| 894 | tQuery_QueryAudioObjectIDs_UniqueID func = (tQuery_QueryAudioObjectIDs_UniqueID)Wwise::Exports::func_Wwise_Sound_Query_QueryAudioObjectIDs_UniqueID.Get(); |
| 895 | return func(in_eventID, io_ruNumItems, out_aObjectInfos); |
| 896 | } |
| 897 | |
| 898 | /// <summary> |
| 899 | /// Get the list of audio object IDs associated to an event name. |