home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / POLYEDIT.LZH / ML / DEFINES.H < prev    next >
C/C++ Source or Header  |  1996-01-17  |  569b  |  29 lines

  1.  
  2. #ifndef    DEFINES
  3.  
  4. #ifndef    TRUE
  5. #    define    TRUE    1
  6. #    define    FALSE    0
  7. #endif
  8.  
  9. #if    defined( __GNUC__ )
  10.     #ifndef _alloca
  11.         #define    _alloca( size )        __builtin_alloca( size )
  12.     #endif
  13. #endif
  14.  
  15. #if    defined( __BORLANDC__ )
  16.     #ifndef _alloca
  17.         #define    _alloca( size )        alloca( size )
  18.     #endif
  19. #endif
  20.  
  21.  
  22. #define    IDENT_CHARS        31        /*    識別文字数                */
  23. #define    STRING_CHARS    4096    /*    文字列の最大長            */
  24. #define    MAX_SYSCONST    256        /*    システム定数の最大数    */
  25. #define    MAX_LOCAL_VAR    256        /*    ローカル変数の最大数    */
  26. #define    MAX_CLASS        256        /*    クラスの最大数            */
  27.  
  28. #endif
  29.