Specifies a printing callback handler. A printing callback handler for use with FDDs is used to convert the FDD integer identifier into something readable by the end user. Typically the handler will print a string name instead of the identifier. A handler could look like this: void * printhandler(FILE *o, int var) { extern char **names; fprintf(o, "%s", names[var]); } fdd_file_hook(printhandler) NULL if no handler is needed.
|