[Prev] [Next] [Top] [Bottom] [Contents] (97 out of 193)

SaPrintAllErrors

A data site callback function which will print out all stored error strings.

Synopsis

#include "SaRnHtml.h"

void SaPrintAllErrors(char* filename, char* site, void* client);

Arguments

filename
Not used.
site
Not used.
client
Not used.

Return Values

None.

Description

A data site callback function which will print out all stored error strings. Each stored string is converted to an HTML-compatible string with a newline character appended, and placed between <PRE></PRE> tags.

Example

SaPrintAllErors(NULL, NULL, NULL);
/*** or ***/
char *filename, *site;
....
SaRegisterFuncSite(filename, site, SaPrintAllErrors, 
NULL);

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (97 out of 193)