home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk23
/
dir05
/
f012760.re_
/
f012760.re
Wrap
Text File
|
1996-04-02
|
2KB
|
51 lines
/*----------------------------------------------------------------------+
| |
| Copyright (1992) Bentley Systems, Inc., All rights reserved. |
| |
| "MicroStation", "MDL", and "MicroCSL" are trademarks of Bentley |
| Systems, Inc. |
| |
| Limited permission is hereby granted to reproduce and modify this |
| copyrighted material provided that the resulting code is used only |
| in conjunction with Bentley Systems products under the terms of the |
| license agreement provided therein, and that this notice is retained |
| in its entirety in any such reproduction or modification. |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| Current Revision: |
| $Workfile: limits.h $
| $Revision: 6.0 $ $Date: Thu Oct 21 10:19:30 1993 $
| |
+----------------------------------------------------------------------*/
#if !defined (mdl)
#error This file is intended for MDL only.
#endif
#if !defined (__limitsH__)
#define __limitsH__
#define CHAR_BIT 8
#define SCHAR_MIN (-127)
#define SCHAR_MAX 127
#define UCHAR_MAX 255
#define CHAR_MIN (-127)
#define CHAR_MAX 127
#define MS_LEN_MAX 1
#if !defined (MB_LEN_MAX)
#define MB_LEN_MAX 2
#endif
#define SHRT_MIN (-32767)
#define SHRT_MAX 32767
#define USHRT_MAX 65535
#define INT_MIN (-2147483647)
#define INT_MAX 2147483647
#define LONG_MIN (-(long)2147483648)
#define LONG_MAX 2147483647
#define ULONG_MAX 4294967295
#endif