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.

45 lines
1.0 KiB

  1. /*
  2. docfmt.h
  3. */
  4. extern int fprocessFiles;
  5. extern int fCleanFiles;
  6. #if 0
  7. extern char currentFile[];
  8. extern char *baseFile;
  9. extern files headFile;
  10. extern int numFiles;
  11. extern fileentry *head_file;
  12. #endif
  13. extern logentry *head_log;
  14. extern aLine *headExternal;
  15. extern char *pchparm;
  16. extern char *pchfunc;
  17. extern char *pchdefault;
  18. extern int noOutput;
  19. extern char * dirPath;
  20. extern char *outputFile;
  21. extern int verbose;
  22. extern int dumplevels;
  23. extern int fSortMessage;
  24. extern int fMMUserEd;
  25. extern int docfmt(char *fileName,struct s_log *pcur_log);
  26. extern void Usage(void );
  27. extern int main(int argc,char * *argv);
  28. extern void formatFiles(void );
  29. extern void parsearg(int argc,char * *argv, int flags);
  30. extern void setoutputfile(char *pch);
  31. extern void settmppath(char *pch);
  32. extern int putblock(struct stBlock *pBlock,struct s_log *pcur_log);
  33. extern void destroyblock(struct stBlock *pcurblock);
  34. extern void destroyBlockchain(struct stBlock *pcurblock);
  35. extern files add_outfile(char *pchfile, logentry *pcur_log);