mirror of https://github.com/tongzx/nt5src
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
32 lines
877 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: params.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef HEADER_PARAMS
|
|
#define HEADER_PARAMS
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//most user defined parameters, this will be passed to each test routine
|
|
typedef struct {
|
|
PTESTED_DOMAIN pDomain;
|
|
BOOL fVerbose;
|
|
BOOL fReallyVerbose;
|
|
BOOL fDebugVerbose;
|
|
BOOL fFixProblems; //GlobalFixProblems;
|
|
BOOL fDcAccountEnum; //GlobalDcAccountEnum;
|
|
BOOL fProblemBased; // ProblemBased
|
|
int nProblemNumber; // ProblemNumber
|
|
FILE* pfileLog; // pointer to the log file
|
|
BOOL fLog;
|
|
} NETDIAG_PARAMS;
|
|
|
|
|
|
#endif
|
|
|