typedef void (*PopulationCallback) SUTPROTO((
void * wid,
void * ClientData,
SaCallbackStruct *data
));The SUTPROTO macro allows for compilation in ANSI as well as old K&R
wid
ClientData
data
typedef struct {
int reason;
XEvent *event;
SaDataStruct *groups;
int nGroups;
} SaCallbackStruct;The Fields in the SaCallbackStruct structure are:
reason
event
nGroups
groups
typedef struct {
char ***data;
long nRows;
int nCols;
int *colWidth;
int *maxColWidth;
int *colCodes;
int *colFormat;
char **columnTitles;
void *options;
} SaDataStruct;The Fields in the SaCallbackStruct structure are:
data
nRows
nCols
colWidth
maxColWidth
colCodes
colFormat
columnTitles
options