16 lines
537 B
C++
16 lines
537 B
C++
#ifndef BOOSTREGEXSEARCH_H
|
|
#define BOOSTREGEXSEARCH_H
|
|
|
|
#define SCFIND_REGEXP_DOTMATCHESNL 0x10000000
|
|
#define SCFIND_REGEXP_EMPTYMATCH_MASK 0xE0000000
|
|
#define SCFIND_REGEXP_EMPTYMATCH_NONE 0x00000000
|
|
#define SCFIND_REGEXP_EMPTYMATCH_NOTAFTERMATCH 0x20000000
|
|
#define SCFIND_REGEXP_EMPTYMATCH_ALL 0x40000000
|
|
#define SCFIND_REGEXP_EMPTYMATCH_ALLOWATSTART 0x80000000
|
|
#define SCFIND_REGEXP_SKIPCRLFASONE 0x08000000
|
|
|
|
#ifdef SCI_OWNREGEX
|
|
extern std::string g_exceptionMessage;
|
|
#endif
|
|
|
|
#endif |