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.

38 lines
440 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. xldebug.h
  5. Abstract:
  6. PCL XL debug class
  7. Environment:
  8. Windows Whistler
  9. Revision History:
  10. 03/23/00
  11. Created it.
  12. --*/
  13. #ifndef _XLDEBUG_H_
  14. #define _XLDEBUG_H_
  15. #if DBG
  16. class XLDebug {
  17. public:
  18. virtual VOID SetDbgLevel(DWORD dwLevel) = 0;
  19. protected:
  20. DWORD m_dbglevel;
  21. };
  22. #endif
  23. #endif // _XLDEBUG_H_