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.
38 lines
440 B
38 lines
440 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
xldebug.h
|
|
|
|
Abstract:
|
|
|
|
PCL XL debug class
|
|
|
|
Environment:
|
|
|
|
Windows Whistler
|
|
|
|
Revision History:
|
|
|
|
03/23/00
|
|
Created it.
|
|
|
|
--*/
|
|
|
|
#ifndef _XLDEBUG_H_
|
|
#define _XLDEBUG_H_
|
|
|
|
#if DBG
|
|
|
|
class XLDebug {
|
|
public:
|
|
virtual VOID SetDbgLevel(DWORD dwLevel) = 0;
|
|
|
|
protected:
|
|
DWORD m_dbglevel;
|
|
};
|
|
|
|
#endif
|
|
#endif // _XLDEBUG_H_
|