home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / packages / win32ada / data.z / win32-limits.ads < prev    next >
Encoding:
Text File  |  1996-03-15  |  2.4 KB  |  44 lines

  1. -- $Source: /home/harp/1/proto/monoBANK/winnt/win32-limits.ads,v $ 
  2. -- $Revision: 1.6 $ $Date: 96/03/15 12:52:26 $ $Author: stm $ 
  3. -- See end of file for Copyright (c) information.
  4.  
  5. package Win32.Limits is
  6.  
  7.     CHAR_BIT   : constant := 8;                             -- limits.h:17
  8.     SCHAR_MIN  : constant := -128;                          -- limits.h:18
  9.     SCHAR_MAX  : constant := 127;                           -- limits.h:19
  10.     UCHAR_MAX  : constant := 16#ff#;                        -- limits.h:20
  11.     CHAR_MIN   : constant := -128;                          -- limits.h:23
  12.     CHAR_MAX   : constant := 127;                           -- limits.h:24
  13.     MB_LEN_MAX : constant := 2;                             -- limits.h:30
  14.     SHRT_MIN   : constant := -32768;                        -- limits.h:31
  15.     SHRT_MAX   : constant := 32767;                         -- limits.h:32
  16.     USHRT_MAX  : constant := 16#ffff#;                      -- limits.h:33
  17.     INT_MIN    : constant := -2147483648;                   -- limits.h:34
  18.     INT_MAX    : constant := 2147483647;                    -- limits.h:35
  19.     UINT_MAX   : constant := 16#ffffffff#;                  -- limits.h:36
  20.     LONG_MIN   : constant := -2147483648;                   -- limits.h:37
  21.     LONG_MAX   : constant := 2147483647;                    -- limits.h:38
  22.     ULONG_MAX  : constant := 16#ffffffff#;                  -- limits.h:39
  23.  
  24. -------------------------------------------------------------------------------
  25. --
  26. -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS PROVIDED WITHOUT CHARGE
  27. -- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
  28. -- BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
  29. -- FITNESS FOR A PARTICULAR PURPOSE.  The user assumes the entire risk as to
  30. -- the accuracy and the use of this file.  This file may be used, copied,
  31. -- modified and distributed only by licensees of Microsoft Corporation's
  32. -- WIN32 Software Development Kit in accordance with the terms of the 
  33. -- licensee's End-User License Agreement for Microsoft Software for the
  34. -- WIN32 Development Kit.
  35. --
  36. -- Copyright (c) Intermetrics, Inc. 1995
  37. -- Portions (c) 1985-1994 Microsoft Corporation with permission.
  38. -- Microsoft is a registered trademark and Windows and Windows NT are
  39. -- trademarks of Microsoft Corporation.
  40. --
  41. -------------------------------------------------------------------------------
  42.  
  43. end Win32.Limits;
  44.