Leaked source code of windows server 2003
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.

43 lines
890 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. pilastgood.h
  5. Abstract:
  6. This header contains private information to implement last known good
  7. support in the IO subsystem. This file is meant to be included only by
  8. pplastgood.c.
  9. Author:
  10. Adrian J. Oney - April 4, 2000
  11. Revision History:
  12. --*/
  13. VOID
  14. PiLastGoodRevertLastKnownDirectory(
  15. IN PUNICODE_STRING LastKnownGoodDirectory,
  16. IN PUNICODE_STRING LastKnownGoodRegPath
  17. );
  18. NTSTATUS
  19. PiLastGoodRevertCopyCallback(
  20. IN PUNICODE_STRING FullPathName,
  21. IN PUNICODE_STRING FileName,
  22. IN ULONG FileAttributes,
  23. IN PVOID Context
  24. );
  25. NTSTATUS
  26. PiLastGoodCopyKeyContents(
  27. IN PUNICODE_STRING SourceRegPath,
  28. IN PUNICODE_STRING DestinationRegPath,
  29. IN BOOLEAN DeleteSourceKey
  30. );