IDIXNOTE – Write simple line of text to report
Format
#include "idixhfmt.h"
int IDIXNOTE(char *psz, ...);
General description
IDIXNOTE() writes a line of unformatted text in the report. The psz argument must point to a NULL-terminated string. (To write formatted text, use the IDIXWRIT() function instead.)
If the psz argument is a format string suitable for use by the C sprintf() function, then more required arguments can follow.
This function is equivalent to the Fault Analyzer REXX command "Note".
Returned value
IDIXNOTE() always returns zero.
Example
#include "idixhfmt.h"
int i;
IDIXNOTE("Important data follows");
…
IDIXNOTE("A total of %d entries listed.",i);