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

  1. -- $Source: /home/harp/1/proto/monoBANK/winnt/win32-fcntl.ads,v $ 
  2. -- $Revision: 1.6 $ $Date: 96/03/15 12:52:10 $ $Author: stm $ 
  3. -- See end of file for Copyright (c) information.
  4.  
  5. package Win32.Fcntl is
  6.  
  7.     O_RDONLY                       : constant := 16#0#;     -- fcntl.h:17
  8.     O_WRONLY                       : constant := 16#1#;     -- fcntl.h:18
  9.     O_RDWR                         : constant := 16#2#;     -- fcntl.h:19
  10.     O_APPEND                       : constant := 16#8#;     -- fcntl.h:20
  11.     O_CREAT                        : constant := 16#100#;   -- fcntl.h:22
  12.     O_TRUNC                        : constant := 16#200#;   -- fcntl.h:23
  13.     O_EXCL                         : constant := 16#400#;   -- fcntl.h:24
  14.     O_TEXT                         : constant := 16#4000#;  -- fcntl.h:30
  15.     O_BINARY                       : constant := 16#8000#;  -- fcntl.h:31
  16.     O_RAW                          : constant := 16#8000#;  -- fcntl.h:35
  17.     O_NOINHERIT                    : constant := 16#80#;    -- fcntl.h:39
  18.     O_TEMPORARY                    : constant := 16#40#;    -- fcntl.h:43
  19.     O_SHORT_LIVED                  : constant := 16#1000#;  -- fcntl.h:47
  20.     O_SEQUENTIAL                   : constant := 16#20#;    -- fcntl.h:51
  21.     O_RANDOM                       : constant := 16#10#;    -- fcntl.h:52
  22.  
  23. -------------------------------------------------------------------------------
  24. --
  25. -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS PROVIDED WITHOUT CHARGE
  26. -- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
  27. -- BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
  28. -- FITNESS FOR A PARTICULAR PURPOSE.  The user assumes the entire risk as to
  29. -- the accuracy and the use of this file.  This file may be used, copied,
  30. -- modified and distributed only by licensees of Microsoft Corporation's
  31. -- WIN32 Software Development Kit in accordance with the terms of the 
  32. -- licensee's End-User License Agreement for Microsoft Software for the
  33. -- WIN32 Development Kit.
  34. --
  35. -- Copyright (c) Intermetrics, Inc. 1995
  36. -- Portions (c) 1985-1994 Microsoft Corporation with permission.
  37. -- Microsoft is a registered trademark and Windows and Windows NT are
  38. -- trademarks of Microsoft Corporation.
  39. --
  40. -------------------------------------------------------------------------------
  41.  
  42. end Win32.Fcntl;
  43.