pjsua_enum_conf_ports method
Enumerate all conference ports.
@param id Array of conference port ID to be initialized. @param count On input, specifies max elements in the array. On return, it contains actual number of elements that have been initialized.
@return PJ_SUCCESS on success, or the appropriate error code.
Implementation
int pjsua_enum_conf_ports(
ffi.Pointer<pjsua_conf_port_id> id,
ffi.Pointer<ffi.UnsignedInt> count,
) {
return _pjsua_enum_conf_ports(
id,
count,
);
}