home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR503.W96 / LOCKS87.C_ / LOCKS87.C
Text File  |  1995-06-20  |  923b  |  44 lines

  1. /***
  2. *
  3. *  Locks87.ch
  4. *
  5. *  Summer '87 Locks.prg compatibility header file
  6. *
  7. *  Copyright (c) 1993-1995, Computer Associates International Inc.
  8. *  All rights reserved.
  9. *
  10. */
  11.  
  12.  
  13. /***
  14. *  Add_Rec( <nWaitSeconds> ) --> lSuccess
  15. *  Attempt to APPEND BLANK with optional retry.
  16. */
  17. #translate Add_rec(<nWaitSeconds>) => AddRec(<nWaitSeconds>)
  18.  
  19.  
  20.  
  21. /***
  22. *  Fil_Lock( <nWaitSeconds> ) --> lSuccess
  23. *  Attempt to FLOCK() with optional retry.
  24. */
  25. #translate Fil_lock(<nSeconds>) => FilLock(<nSeconds>)
  26.  
  27.  
  28.  
  29. /***
  30. *  Net_Use( <cDatabase>, <lOpenMode>, <nWaitSeconds> ) --> lSuccess
  31. *  Attempt to USE a database file with optional retry
  32. */
  33. #translate Net_use(<cDatabase>, <lOpenMode>, <nSeconds>) => ;
  34.    NetUse(<cDatabase>, <lOpenMode>, <nSeconds>)
  35.  
  36.  
  37.  
  38. /***
  39. *  Rec_Lock( <nWaitSeconds> ) --> lSuccess
  40. *  Attempt to RLOCK() with optional retry.
  41. */
  42. #translate Rec_lock(<nSeconds>) => RecLock(<nSeconds>)
  43.  
  44.