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.

46 lines
875 B

  1. //+------------------------------------------------------------------
  2. //
  3. // File: know.h
  4. //
  5. // Contents: Header file for knowledge related functions.
  6. //
  7. // Functions:
  8. //
  9. //-------------------------------------------------------------------
  10. NTSTATUS
  11. DfsModifyRemotePrefix(
  12. IN DFS_PKT_ENTRY_ID ExitPtId,
  13. IN HANDLE remoteHandle
  14. );
  15. NTSTATUS
  16. DfsCreateRemoteExitPoint(
  17. IN DFS_PKT_ENTRY_ID ExitPtId,
  18. IN HANDLE remoteHandle
  19. );
  20. NTSTATUS
  21. DfsDeleteRemoteExitPoint(
  22. IN DFS_PKT_ENTRY_ID ExitPtId,
  23. IN HANDLE remoteHandle
  24. );
  25. NTSTATUS
  26. DfsFsctrlFixLocalVolumeKnowledge(
  27. IN PIRP Irp,
  28. IN PVOID InputBuffer,
  29. IN ULONG InputBufferLength
  30. );
  31. BOOLEAN
  32. DfsStorageIdExists(
  33. IN UNICODE_STRING StgPath,
  34. IN BOOLEAN bCreate
  35. );
  36. BOOLEAN
  37. DfsFixExitPath(
  38. PWSTR ExitPath
  39. );