home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / hsys.z / locking.h next >
C/C++ Source or Header  |  1996-11-06  |  986b  |  37 lines

  1. /*
  2.  *  sys/locking.h    Flags for locking() function
  3.  *
  4.  *  Copyright by WATCOM International Corp. 1988-1996.  All rights reserved.
  5.  */
  6. #ifndef __LOCKING_H_INCLUDED
  7. #define __LOCKING_H_INCLUDED
  8. #if !defined(_ENABLE_AUTODEPEND)
  9.   #pragma read_only_file;
  10. #endif
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. #ifndef _COMDEF_H_INCLUDED
  16.  #include <_comdef.h>
  17. #endif
  18.  
  19. #define _LK_UNLCK   0    /* unlock region of a file */
  20. #define LK_UNLCK    _LK_UNLCK
  21. #define _LK_LOCK    1    /* lock a region of a file */
  22. #define LK_LOCK     _LK_LOCK
  23. #define _LK_NBLCK   2    /* non-blocking lock */
  24. #define LK_NBLCK    _LK_NBLCK
  25. #define _LK_RLCK    3    /* lock for writing */
  26. #define LK_RLCK        _LK_RLCK
  27. #define _LK_NBRLCK  4    /* non-blocking lock for writing */
  28. #define LK_NBRLCK   _LK_NBRLCK
  29.  
  30. _WCRTLINK extern int locking(int __handle,int __mode,unsigned long __nbyte);
  31. _WCRTLINK extern int _locking(int __handle,int __mode,unsigned long __nbyte);
  32.  
  33. #ifdef __cplusplus
  34. };
  35. #endif
  36. #endif
  37.