Diff for /embedaddon/pcre/pcre.h.generic between versions 1.1.1.4 and 1.1.1.5

version 1.1.1.4, 2013/07/22 08:25:55 version 1.1.1.5, 2014/06/15 19:46:03
Line 42  POSSIBILITY OF SUCH DAMAGE. Line 42  POSSIBILITY OF SUCH DAMAGE.
 /* The current PCRE version information. */  /* The current PCRE version information. */
   
 #define PCRE_MAJOR          8  #define PCRE_MAJOR          8
#define PCRE_MINOR          33#define PCRE_MINOR          34
 #define PCRE_PRERELEASE       #define PCRE_PRERELEASE     
#define PCRE_DATE           2013-05-28#define PCRE_DATE           2013-12-15
   
 /* When an application links to a PCRE DLL in Windows, the symbols that are  /* When an application links to a PCRE DLL in Windows, the symbols that are
 imported have to be identified as such. When building PCRE, the appropriate  imported have to be identified as such. When building PCRE, the appropriate
Line 150  with J. */ Line 150  with J. */
 #define PCRE_NEVER_UTF          0x00010000  /* C1        ) Overlaid */  #define PCRE_NEVER_UTF          0x00010000  /* C1        ) Overlaid */
 #define PCRE_DFA_SHORTEST       0x00010000  /*      D    ) Overlaid */  #define PCRE_DFA_SHORTEST       0x00010000  /*      D    ) Overlaid */
   
#define PCRE_DFA_RESTART        0x00020000  /*      D   *//* This pair use the same bit. */
 #define PCRE_NO_AUTO_POSSESS    0x00020000  /* C1        ) Overlaid */
 #define PCRE_DFA_RESTART        0x00020000  /*      D    ) Overlaid */
 
 #define PCRE_FIRSTLINE          0x00040000  /* C3       */  #define PCRE_FIRSTLINE          0x00040000  /* C3       */
 #define PCRE_DUPNAMES           0x00080000  /* C1       */  #define PCRE_DUPNAMES           0x00080000  /* C1       */
 #define PCRE_NEWLINE_CR         0x00100000  /* C3 E D   */  #define PCRE_NEWLINE_CR         0x00100000  /* C3 E D   */
Line 277  with J. */ Line 280  with J. */
 #define PCRE_INFO_REQUIREDCHARFLAGS 22  #define PCRE_INFO_REQUIREDCHARFLAGS 22
 #define PCRE_INFO_MATCHLIMIT        23  #define PCRE_INFO_MATCHLIMIT        23
 #define PCRE_INFO_RECURSIONLIMIT    24  #define PCRE_INFO_RECURSIONLIMIT    24
   #define PCRE_INFO_MATCH_EMPTY       25
   
 /* Request types for pcre_config(). Do not re-arrange, in order to remain  /* Request types for pcre_config(). Do not re-arrange, in order to remain
 compatible. */  compatible. */
Line 294  compatible. */ Line 298  compatible. */
 #define PCRE_CONFIG_UTF16                  10  #define PCRE_CONFIG_UTF16                  10
 #define PCRE_CONFIG_JITTARGET              11  #define PCRE_CONFIG_JITTARGET              11
 #define PCRE_CONFIG_UTF32                  12  #define PCRE_CONFIG_UTF32                  12
   #define PCRE_CONFIG_PARENS_LIMIT           13
   
 /* Request types for pcre_study(). Do not re-arrange, in order to remain  /* Request types for pcre_study(). Do not re-arrange, in order to remain
 compatible. */  compatible. */
Line 655  PCRE_EXP_DECL void pcre16_assign_jit_stack(pcre16_extr Line 660  PCRE_EXP_DECL void pcre16_assign_jit_stack(pcre16_extr
                   pcre16_jit_callback, void *);                    pcre16_jit_callback, void *);
 PCRE_EXP_DECL void pcre32_assign_jit_stack(pcre32_extra *,  PCRE_EXP_DECL void pcre32_assign_jit_stack(pcre32_extra *,
                   pcre32_jit_callback, void *);                    pcre32_jit_callback, void *);
   PCRE_EXP_DECL void pcre_jit_free_unused_memory(void);
   PCRE_EXP_DECL void pcre16_jit_free_unused_memory(void);
   PCRE_EXP_DECL void pcre32_jit_free_unused_memory(void);
   
 #ifdef __cplusplus  #ifdef __cplusplus
 }  /* extern "C" */  }  /* extern "C" */

Removed from v.1.1.1.4  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>