home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / SampleSMSAMServer / DebugConstants.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  873 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        DebugConstants.h
  3.  
  4.     Copyright:    © 1991-1994 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Part of the AOCE Sample SMSAM Package.  Consult the license
  8.     which came with this software for your specific legal rights.
  9.  
  10. */
  11.  
  12.  
  13.  
  14. #ifndef    __DEBUGCONSTANTS__
  15. #define    __DEBUGCONSTANTS__
  16.  
  17. #ifndef __DEBUGGINGGEAR__
  18. #include "DebuggingGear.h"
  19. #endif
  20.  
  21. /***********************************|****************************************/
  22.  
  23. enum EChrisDebugFlags
  24. {
  25.     kExtensiveTupleKeyDescribe = 1,
  26.     kExtensiveBufferDescribe,
  27.     kExtensiveTupleDBDescribe,
  28.     kTupleDescribeInSetConfig,
  29.     kBTreeErrorDescribe,
  30.     kDontUnmangleProcNames,
  31.     kDoOCEObjectsValidityChecks,
  32.     kMemoryInfoChangedInMain,
  33.     kHeapObjectTagging,
  34.     kCallMacsbugOnMemErr,
  35.     kBreakOnFailures,
  36.     
  37.     kLastChrisDebugFlag
  38. };
  39.  
  40. /***********************************|****************************************/
  41.  
  42. #endif    // __DEBUGCONSTANTS__
  43.