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

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