MCPcopy Create free account
hub / github.com/Lovrom8/RSMods / QueryAudioObjectIDs

Function QueryAudioObjectIDs

DLL/Wwise/SoundEngine.cpp:893–896  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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.

Callers 1

LogSongIDMethod · 0.85

Calls 1

GetMethod · 0.80

Tested by

no test coverage detected