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