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.

61 lines
671 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. smbrdr.h
  5. Abstract:
  6. Author:
  7. Revision History:
  8. --*/
  9. #ifndef _SWITCHRX_INCLUDED_
  10. #define _SWITCHRX_INCLUDED_
  11. #include <lmcons.h>
  12. #if DBG
  13. #define STATIC
  14. #define DEBUG if (TRUE)
  15. #define IF_DEBUG(Function) if ( TRUE )
  16. #else
  17. #define STATIC static
  18. #define DEBUG if (FALSE)
  19. #define IF_DEBUG(Function) if (FALSE)
  20. #endif // DBG
  21. NET_API_STATUS
  22. SwRxRdr2Muck(
  23. void
  24. );
  25. NET_API_STATUS
  26. SwRxRdr1Muck(
  27. void
  28. );
  29. VOID
  30. SwRxStartProxyFileSystem(void);
  31. VOID
  32. SwRxStopProxyFileSystem(void);
  33. typedef
  34. NET_API_STATUS
  35. (*PSWRX_REGISTRY_MUCKER)(
  36. void
  37. );
  38. #endif // ifndef _SWITCHRX_INCLUDED_
  39.