MyStandardError
Directs error output. When invoking the Java runtime environment using JMOpenSession, you must designate a callback function to direct any error output received from the session. For example, this is how you would define your error function if you were to name it MyStandardError:
void MyStandardError (
JMSessionRef session,
const char* message,
UInt32 messageLen);
session
- The session sending the error text.
message
- The error message to display.
messageLen
- The length of the text.
DISCUSSION
This function has the same form as the MyStandardOut callback function.