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.

26 lines
618 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996, Microsoft Corporation
  4. //
  5. // File: srv.h
  6. //
  7. // Contents: Support for interacting with the SMB server.
  8. //
  9. // Classes: None
  10. //
  11. // Functions: DfsSrvFsctrl
  12. //
  13. //-----------------------------------------------------------------------------
  14. #ifndef _SRV_DFS_
  15. #define _SRV_DFS_
  16. VOID DfsSrvFsctrl(
  17. IN ULONG IoControlCode,
  18. IN PVOID InputBuffer,
  19. IN ULONG InputBufferLength,
  20. OUT PVOID OutputBuffer,
  21. IN ULONG OutputBufferLength,
  22. OUT PIO_STATUS_BLOCK IoStatus);
  23. #endif // _SRV_DFS_