Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
673 B

  1. /*
  2. output.h - definitions for outputting the documentation text
  3. */
  4. extern void VenturaBlockOut( aBlock *pBlock, FILE *ofile);
  5. extern void VentextOut( FILE *, aLine *, BOOL );
  6. extern void VentextOutLnCol(FILE *, aLine *, char *);
  7. extern void VenfuncOut( aBlock *, FILE * );
  8. /* LogFile stuff */
  9. extern void VenFileInit(FILE * phoutfile, logentry *curlog);
  10. extern void VenFileProcess(FILE * phoutfile, files curfile);
  11. extern void VenFileDone(FILE * phoutfile, files headfile);
  12. extern void VenLogInit(FILE * phoutfile, logentry * * pheadlog);
  13. extern void VenLogProcess(FILE * phoutfile, logentry * curlog);
  14. extern void VenLogDone(FILE * phoutfile, logentry * headlog);