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.

49 lines
696 B

  1. /*++ Copyright(c) 2001 Microsoft Corporation
  2. Module Name:
  3. NLB Manager
  4. File Name:
  5. twlbssys.cpp
  6. Abstract:
  7. Sub-component test harness for NLB Driver (wlbs.sys)
  8. History:
  9. 04/24/2002 JosephJ Created
  10. --*/
  11. #include "twlbssys.h"
  12. #include "twlbssys.tmh"
  13. int __cdecl wmain(int argc, WCHAR* argv[], WCHAR* envp[])
  14. {
  15. BOOL fRet = FALSE;
  16. //
  17. // Enable tracing
  18. //
  19. WPP_INIT_TRACING(L"Microsoft\\NLB\\TPROV");
  20. //
  21. // Call subcomponent tests, bail if any fail.
  22. //
  23. if (!test_diplist()) goto end;
  24. fRet = TRUE;
  25. end:
  26. //
  27. // Disable tracing
  28. //
  29. WPP_CLEANUP();
  30. return fRet ? 0 : 1;
  31. }