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.

39 lines
949 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1992.
  5. //
  6. // File: TableDbg.hxx
  7. //
  8. // Contents: Debug declarations
  9. //
  10. // History: 08-Sep-92 KyleP Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #pragma once
  14. // server-side (bigtable) flags
  15. #define DEB_REFRESH 0x00010000
  16. #define DEB_BOOKMARK 0x00020000
  17. #define DEB_WINSPLIT 0x00040000
  18. #define DEB_WATCH 0x00080000
  19. #define DEB_REGTRANS 0x00200000
  20. #define DEB_NOTIFY 0x00400000
  21. // client-side (rowset) flags
  22. #define DEB_PROXY 0x00800000
  23. #define DEB_ROWBUF 0x01000000
  24. #define DEB_ACCESSOR 0x02000000
  25. #if CIDBG == 1
  26. DECLARE_DEBUG(tb)
  27. #define tbDebugOut( x ) tbInlineDebugOut x
  28. #else // CIDBG == 0
  29. #define tbDebugOut( x )
  30. #endif // CIDBG == 0