pjsua_perror method

void pjsua_perror(
  1. Pointer<Char> sender,
  2. Pointer<Char> title,
  3. int status
)

This is a utility function to display error message for the specified error code. The error message will be sent to the log.

@param sender The log sender field. @param title Message title for the error. @param status Status code.

Implementation

void pjsua_perror(
  ffi.Pointer<ffi.Char> sender,
  ffi.Pointer<ffi.Char> title,
  int status,
) {
  return _pjsua_perror(
    sender,
    title,
    status,
  );
}