home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / NewsView 1.0.0 / source / MiscInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-16  |  1.2 KB  |  37 lines  |  [TEXT/KAHL]

  1. /* MiscInfo.h for NewsView */
  2.  
  3. #ifndef Included_MiscInfo_h
  4. #define Included_MiscInfo_h
  5.  
  6. /********************************************************************************/
  7. /* control flags */
  8.  
  9. /* to enable one of the following debugging features, but a 1 in the definition. */
  10. /* to disable, put a 0.  Do NOT use macros True and False since they may not be */
  11. /* defined when this file is read. */
  12. #define DEBUG (0)  /* debugging macros */
  13. #define ALWAYSRESUME (0)  /* resume button availability */
  14. #define DEBUGGER_PRESENT (0)  /* break points in PRERR */
  15. #define AUDIT (0)  /* audit file generation */
  16. #define AUDITFLUSHING (0)  /* flush AUDIT file after each write (very slow) */
  17. #define MEMDEBUG (0)  /* pointer allocation checking */
  18.  
  19.  
  20. /********************************************************************************/
  21. /* application information */
  22.  
  23. #define VersionString "1.00"
  24.  
  25. #define ApplicationCreator ('\xba'*(1L<<24) + 'N'*(1L<<16) + 'V'*(1L<<8) + 'w')
  26.  
  27.  
  28. /********************************************************************************/
  29. /* audit file creator */
  30.  
  31. #define AUDITCREATOR ('KAHL') /* THINK C creator */
  32.  
  33.  
  34. /********************************************************************************/
  35.  
  36. #endif
  37.