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.
 
 
 
 
 
 

32 lines
1.4 KiB

//+----------------------------------------------------------------------------
//
// Copyright (C) 2000, Microsoft Corporation
//
// File: DfsLogMacros.hxx
//
// Contents: This file contains the functionality to generate WMI Logging Macros
//
//
// History: March 12 2001, Authors: RohanP
//
//-----------------------------------------------------------------------------
#include "dfswmi.h"
extern PVOID pReferralControl;
#define WPP_LEVEL_FLAGS_LOGGER(lvl,flags) (((WPP_CB_TYPE *)pReferralControl)->Control.Logger),
#define WPP_LEVEL_FLAGS_ENABLED(lvl, flags) \
(pReferralControl && (((WPP_CB_TYPE *)pReferralControl)->Control.Flags[WPP_FLAG_NO(WPP_BIT_ ## flags)] & WPP_MASK(WPP_BIT_ ## flags)) && \
( ((WPP_CB_TYPE *)pReferralControl)->Control.Level >= lvl))
#define WPP_LEVEL_ERROR_FLAGS_LOGGER(lvl, error, flags) (((WPP_CB_TYPE *)pReferralControl)->Control.Logger),
#define WPP_LEVEL_ERROR_FLAGS_ENABLED_DFSPRIVATE(lvl, flags, extraflags) \
(pReferralControl && (((WPP_CB_TYPE *)pReferralControl)->Control.Flags[WPP_FLAG_NO(WPP_BIT_ ## flags)] & (WPP_MASK(WPP_BIT_ ## flags) | WPP_MASK(extraflags))) && \
( ((WPP_CB_TYPE *)pReferralControl)->Control.Level >= lvl))
#define WPP_LEVEL_ERROR_FLAGS_ENABLED(lvl, error, flags) WPP_LEVEL_ERROR_FLAGS_ENABLED_DFSPRIVATE(lvl, flags, ((error == 0) ? 0 : WPP_BIT_ALL_ERRORS))