Pointer to the SAFEARRAY of strings containing available categories
Return Values
S_OK
Success
E_FAIL
Failure.
Example
This VB example initializes a combo box with the list of available audio recording devices:
AudioLst = ActiveGige1.GetAudioList
For i = 0 ToUBound(AudioLst)
Combo1.AddItem (AudioLst(i))
Next
Combo1.ListIndex = 0
Remarks
Note that in C/C++ applications it is required to call SafeArrayDestroy() to delete the SAFEARRAY returned by GetAudioList.