home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Pascal / BPASCAL.700 / D12 / GREPDLL.ZIP / REGEXP.RC < prev   
Encoding:
Text File  |  1992-10-01  |  722 b   |  22 lines

  1. #include <_regexp.h>
  2.  
  3. STRINGTABLE
  4. BEGIN
  5.  
  6. RE_OK                   "No error"
  7. RE_NOTFOUND             "No match found for regular expression"
  8. RE_INVALIDPARAMETER     "Invalid parameter passed to function"
  9. RE_EXPRESSIONTOOBIG     "Regular expression too complex"
  10. RE_OUTOFMEMORY          "Out of memory"
  11. RE_TOOMANYSUBEXPS       "Too many sub-expressions"
  12. RE_UNMATCHEDPARENS      "Unmatched '('"
  13. RE_INVALIDREPEAT        "Invalid use of a repeat"
  14. RE_NESTEDREPEAT         "Nested repeats not allowed"
  15. RE_INVALIDRANGE         "Invalid range specifier"
  16. RE_UNMATCHEDBRACKET     "Unmatched '['"
  17. RE_TRAILINGBACKSLASH    "Trailing '\' not allowed"
  18. RE_INTERNAL             "*** internal REGREP.DLL error ***"
  19.  
  20. END
  21.  
  22.