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.

44 lines
962 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996, Microsoft Corporation
  4. //
  5. // File: dfsipc.h
  6. //
  7. // Contents: Code to communicate with the Dfs driver. The Dfs driver
  8. // sends messages to the user level to resolve a name to either a domain or
  9. // computer based Dfs name.
  10. //
  11. // Classes: None
  12. //
  13. // History: Feb 1, 1996 Milans Created
  14. //
  15. //-----------------------------------------------------------------------------
  16. #ifndef _DFS_IPC_
  17. #define _DFS_IPC_
  18. typedef struct {
  19. HANDLE hThreadStarted;
  20. DWORD dwThreadStatus;
  21. } PROCESS_DRIVER_MESSAGE_STARTUP, *LPPROCESS_DRIVER_MESSAGE_STARTUP;
  22. NTSTATUS
  23. DfsInitOurDomainDCs(
  24. VOID);
  25. NTSTATUS
  26. DfsInitRemainingDomainDCs(
  27. VOID);
  28. NTSTATUS
  29. DfsGetTrustedDomainDCs(
  30. LPWSTR wszDomainName,
  31. ULONG Flags);
  32. NTSTATUS
  33. DfsDomainReferral(
  34. LPWSTR wszDomain,
  35. LPWSTR wszShare);
  36. #endif // _DFS_IPC_