pjsua_acc_get_user_data method

Pointer<Void> pjsua_acc_get_user_data(
  1. int acc_id
)

Retrieve arbitrary data associated with the account.

@param acc_id The account ID.

@return The user data. In the case where the account ID is not valid, NULL is returned.

Implementation

ffi.Pointer<ffi.Void> pjsua_acc_get_user_data(
  int acc_id,
) {
  return _pjsua_acc_get_user_data(
    acc_id,
  );
}