pjsua_perror method
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,
);
}