Notepad++ official repository
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|