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.

63 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. stubs.c
  5. Abstract:
  6. This module implements the mini redirector call down routines that are essentially
  7. just noops but which have to be implemented because the wrapper calls them without
  8. checking. In most cases, CODE.IMPROVEMENT the wrapper should either provide a stub
  9. to be used or check before calling.
  10. Author:
  11. Joe Linn [joelinn] 3-December-96
  12. Revision History:
  13. --*/
  14. #include "precomp.h"
  15. #pragma hdrstop
  16. //
  17. // The local debug trace level
  18. //
  19. #define Dbgg (0)
  20. #if 0
  21. NTSTATUS
  22. MRxProxyTransportUpdateHandler(
  23. PRXCE_TRANSPORT_NOTIFICATION pTransportNotification)
  24. /*++
  25. Routine Description:
  26. This routine is the callback handler that is invoked by the RxCe when transports
  27. are either enabled or disabled. Since we do not use transports, we just return success.
  28. Arguments:
  29. pTransportNotification - information pertaining to the transport
  30. Return Value:
  31. STATUS_SUCCESS - the server transport construction has been finalized.
  32. Other Status codes correspond to error situations.
  33. Notes:
  34. --*/
  35. {
  36. return STATUS_SUCCESS;
  37. }
  38. #endif
  39.