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

  1. -- $Source: /home/harp/1/proto/monoBANK/winnt/win32-types.ads,v $ 
  2. -- $Revision: 1.6 $ $Date: 96/03/15 12:56:19 $ $Author: stm $ 
  3. -- See end of file for Copyright (c) information.
  4.  
  5. with Win32;
  6.  
  7. package Win32.Types is
  8.  
  9.     type time_t is new Win32.LONG;                          -- types.h:18
  10.     type ino_t is new Win32.USHORT;                         -- types.h:23
  11.     type dev_t is new Win32.SHORT;                          -- types.h:32
  12.     type off_t is new Win32.LONG;                           -- types.h:41
  13.  
  14. -------------------------------------------------------------------------------
  15. --
  16. -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS PROVIDED WITHOUT CHARGE
  17. -- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
  18. -- BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
  19. -- FITNESS FOR A PARTICULAR PURPOSE.  The user assumes the entire risk as to
  20. -- the accuracy and the use of this file.  This file may be used, copied,
  21. -- modified and distributed only by licensees of Microsoft Corporation's
  22. -- WIN32 Software Development Kit in accordance with the terms of the 
  23. -- licensee's End-User License Agreement for Microsoft Software for the
  24. -- WIN32 Development Kit.
  25. --
  26. -- Copyright (c) Intermetrics, Inc. 1995
  27. -- Portions (c) 1985-1994 Microsoft Corporation with permission.
  28. -- Microsoft is a registered trademark and Windows and Windows NT are
  29. -- trademarks of Microsoft Corporation.
  30. --
  31. -------------------------------------------------------------------------------
  32.  
  33. end Win32.Types;
  34.