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.

32 lines
877 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: params.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef HEADER_PARAMS
  11. #define HEADER_PARAMS
  12. //////////////////////////////////////////////////////////////////////////////
  13. //most user defined parameters, this will be passed to each test routine
  14. typedef struct {
  15. PTESTED_DOMAIN pDomain;
  16. BOOL fVerbose;
  17. BOOL fReallyVerbose;
  18. BOOL fDebugVerbose;
  19. BOOL fFixProblems; //GlobalFixProblems;
  20. BOOL fDcAccountEnum; //GlobalDcAccountEnum;
  21. BOOL fProblemBased; // ProblemBased
  22. int nProblemNumber; // ProblemNumber
  23. FILE* pfileLog; // pointer to the log file
  24. BOOL fLog;
  25. } NETDIAG_PARAMS;
  26. #endif