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
569 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. _log.h
  5. Abstract:
  6. Function prototypes for restore diskette file logging and
  7. related activities, such as checksum computation.
  8. Author:
  9. Ted Miller (tedm) 30-April-1992
  10. Revision History:
  11. --*/
  12. VOID
  13. InitRestoreDiskLogging(
  14. IN BOOL StartedByCommand
  15. );
  16. VOID
  17. LogOneFile(
  18. IN PCHAR SrcFullname,
  19. IN PCHAR DstFullname,
  20. IN PCHAR DiskDescription,
  21. IN ULONG Checksum,
  22. IN PCHAR DiskTag,
  23. IN BOOL ThirdPartyFile
  24. );
  25. VOID
  26. RestoreDiskLoggingDone(
  27. VOID
  28. );