home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a009 / 6.ddi / SAMPLE.LIF / LOCKS87.CH < prev    next >
Encoding:
Text File  |  1991-04-14  |  813 b   |  40 lines

  1. /***
  2. *    locks87.ch
  3. *
  4. *    Copyright, Nantucket Corporation, 1990
  5. */
  6.  
  7.  
  8. /***
  9. *  Add_Rec( <nWaitSeconds> ) --> lSuccess
  10. *  Attempt to APPEND BLANK with optional retry.
  11. */
  12. #translate Add_rec(<nWaitSeconds>) => AddRec(<nWaitSeconds>)
  13.  
  14.  
  15.  
  16. /***
  17. *  Fil_Lock( <nWaitSeconds> ) --> lSuccess
  18. *  Attempt to FLOCK() with optional retry.
  19. */
  20. #translate Fil_lock(<nSeconds>) => FilLock(<nSeconds>)
  21.  
  22.  
  23.  
  24. /***
  25. *  Net_Use( <cDatabase>, <lOpenMode>, <nWaitSeconds> ) --> lSuccess
  26. *  Attempt to USE a database file with optional retry
  27. */
  28. #translate Net_use(<cDatabase>, <lOpenMode>, <nSeconds>) => ;
  29.    NetUse(<cDatabase>, <lOpenMode>, <nSeconds>)
  30.  
  31.  
  32.  
  33. /***
  34. *  Rec_Lock( <nWaitSeconds> ) --> lSuccess
  35. *  Attempt to RLOCK() with optional retry.
  36. */
  37. #translate Rec_lock(<nSeconds>) => RecLock(<nSeconds>)
  38.  
  39.  
  40.