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.

25 lines
1.1 KiB

  1. /*
  2. Process.h
  3. *
  4. */
  5. extern void processLog(void );
  6. extern void processLogs(struct _iobuf *fpout,struct s_log *cur_log);
  7. extern void cleanLogs(struct s_log *cur_log);
  8. extern void readLog(struct s_log *cur_log);
  9. extern int initLogs(struct _iobuf *phoutfile,struct s_log * *phead_log);
  10. extern int initFiles(struct _iobuf *phoutfile,struct s_log *curlog);
  11. extern void dumptable(int numfiles,struct strfile * *ptable);
  12. extern int filecmp(struct strfile * *f1,struct strfile * *f2);
  13. extern int processFiles(struct _iobuf *phoutfile,struct strfile *headFile);
  14. extern int parseFile(struct _iobuf *pfh,struct strfile *curFile);
  15. extern void doneLogs(struct _iobuf *phoutfile,struct s_log *headLog);
  16. extern void doneFiles(struct _iobuf *phoutfile,struct strfile *headFile);
  17. extern int cleanFile(struct strfile *headFile);
  18. extern void copyfile(struct _iobuf *phoutfile,char *pchfilename);
  19. extern char *findfile(char *pch);
  20. extern struct s_log *add_logtoprocess(char *pch);
  21. extern struct s_log *newlog(struct s_log * *start_log);
  22. extern struct strfile *newfile(struct strfile * *start_file);
  23. extern fileentry * add_filetoprocess(char *pch, logentry *curlog);