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.

53 lines
735 B

  1. /*++
  2. Copyright (c) 1989 - 1999 Microsoft Corporation
  3. Module Name:
  4. transport.c
  5. Abstract:
  6. This module implements all transport related functions in the SMB connection engine
  7. --*/
  8. #include "precomp.h"
  9. #pragma hdrstop
  10. NTSTATUS
  11. NulMRxInitializeTransport()
  12. /*++
  13. Routine Description:
  14. This routine initializes the transport related data structures
  15. Returns:
  16. STATUS_SUCCESS if the transport data structures was successfully initialized
  17. Notes:
  18. --*/
  19. {
  20. return STATUS_SUCCESS;
  21. }
  22. NTSTATUS
  23. NulMRxUninitializeTransport()
  24. /*++
  25. Routine Description:
  26. This routine uninitializes the transport related data structures
  27. Notes:
  28. --*/
  29. {
  30. return STATUS_SUCCESS;
  31. }