home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 257.img / PRO-C1.ZIP / HELP.ZIP / IOMSG.H < prev    next >
Text File  |  1990-05-28  |  3KB  |  64 lines

  1. /* ==( hdr/iomsg.h )== */
  2.  
  3. /* ----------------------------------------------- */
  4. /* Pro-C - Copyright (C) 1988, 1989 Vestronix Inc. */
  5. /* Modification to this source is not supported    */
  6. /* by Vestronix Inc.                               */
  7. /*            All Rights Reserved                  */
  8. /* ----------------------------------------------- */
  9.  
  10. /*
  11.  * Messages translating PRO-C Error Codes returned from I/O interfaces.
  12. */
  13. /* IONOTRANS */
  14. #define        FileNoTrans_s        "Transaction Processing error in %s"
  15. /* IONOLOGON */
  16. #define        FileBadPasswd        "Invalid User ID or Password"
  17. /* IONONEXT */
  18. #define        FileNoMoreMatch_ss    "No more matches to %s in File %s"
  19. /* IONOLOCK */
  20. #define        FileNotLocked_s        "File %s is not locked"
  21. /* IOLOCKED */
  22. #define        FileLocked_s        "File %s is locked"
  23. #define        FileLockTimeout_s    "File %s is locked, timeout exceeded"
  24. /* IOEOF */
  25. #define        FileEnd_s        "No more records in %s"
  26. /* IOTOF */
  27. #define        FileTop_s        "No prior records in %s"
  28. /* IODUP */
  29. #define        FileDuplKey_ss        "Key value %s already exists in File %s"
  30. /* IONOKEY */
  31. #define        FileNoKey_ss        "Key value %s not found in File %s"
  32. /* IOINDEXPOSN */
  33. #define        FileDiffKey_s        "Current Index for File %s has changed"
  34. /* IOBADOPEN */
  35. #define        FileNotOpened_s        "File %s was not opened"
  36. /* IONOFILE */
  37. #define        FileNotFound_s        "File %s does not exist"
  38. /* IOERROR */
  39. #define        FileGenError        "General Error"
  40. #define        FileGenError_s        "General Error in File %s"
  41. #define        FileGenError_sds    "%s:\nError %d in File %s"
  42. #define        FileDbgError_sds    "%s:\n Error %d\n Ret Code %s"
  43. #define        FileDbgError_sdss    "%s:\n Error %d\n File %s\n Ret Code %s"
  44.  
  45. /*
  46. * Miscellaneous messages in I/O interface modules
  47. */
  48. #define        FileMaxOpen        "Maximum number of open files exceeded"
  49. #define        FileNoMemory        "Insufficient memory available"
  50. #define        FileRecLenChg_s        "Record length change in existing file %s"
  51. #define        FileMemoNoRead_ss    "Memo field %s read error\in file %s"
  52. #define        FileMemoNoWrite_ss    "Memo field %s write error\in file %s"
  53. #define        FilePackFail_s        "Database PACK failure in file %s"
  54. #define        FileFldRef_s        "Field reference error in %s"
  55. #define        FileFirstKeyFld_s    "First field in file %s\nMUST be the primary key"
  56. #define        FileEngNotStart_s    "%s Database Engine not started"
  57. #define        FileShareReqd        "SHARE must be run before using database"
  58. #define        FileTrnsBegin        "Start Transaction failure"
  59. #define        FileTrnsCommit        "Commit Transaction failure"
  60. #define        FileTrnsRlback        "Rollback Transaction failure"
  61. #define        FileTrnsLogOpen        "Cannot open Transaction Log File"
  62. #define        FileTrnsLogCreate    "Cannot create Transaction Log File"
  63.  
  64.