home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tv20cpp.zip / tvision / tvconfig.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  459b  |  26 lines

  1. /*
  2.  * tvconfig.h
  3.  *
  4.  * Turbo Vision - Version 2.0
  5.  *
  6.  * Copyright (c) 1994 by Borland International
  7.  * All Rights Reserved.
  8.  *
  9.  * Modified by Sergio Sigala <ssigala@globalnet.it>
  10.  */
  11.  
  12. #if !defined( __CONFIG_H )
  13. #define __CONFIG_H
  14.  
  15. #include <limits.h>
  16.  
  17. const eventQSize = 16;
  18. const maxCollectionSize = (int)(( (long) UINT_MAX - 16)/sizeof( void * ));
  19.  
  20. const maxViewWidth = 132;
  21.  
  22. const maxFindStrLen    = 80;
  23. const maxReplaceStrLen = 80;
  24.  
  25. #endif  // __CONFIG_H
  26.