C++ compilation.
[idzebra-moved-to-github.git] / dfa / dfap.h
index c7798c1..fd8bf93 100644 (file)
@@ -1,10 +1,20 @@
 /*
- * Copyright (C) 1994-1997, Index Data I/S 
+ * Copyright (C) 1994-1999, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: dfap.h,v $
- * Revision 1.6  1997-09-18 08:59:17  adam
+ * Revision 1.9  1999-05-26 07:49:12  adam
+ * C++ compilation.
+ *
+ * Revision 1.8  1999/02/02 14:50:06  adam
+ * Updated WIN32 code specific sections. Changed header.
+ *
+ * Revision 1.7  1997/09/29 09:05:17  adam
+ * Thread safe DFA module. We simply had to put a few static vars to
+ * the DFA_parse structure.
+ *
+ * Revision 1.6  1997/09/18 08:59:17  adam
  * Extra generic handle for the character mapping routines.
  *
  * Revision 1.5  1997/09/05 15:29:58  adam
 
 #include <dfa.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct DFA_parse {
     struct Tnode *root;       /* root of regular syntax tree */
     int position;             /* no of positions so far */
@@ -46,6 +60,19 @@ struct DFA_parse {
     int *charMap;
     int charMapSize;
     void *cmap_data;
+
+    unsigned look_ch;
+    int lookahead;
+    BSet look_chars;
+    int err_code;
+    int inside_string;
+    const unsigned char *expr_ptr;
+
+    struct Tnode **posar;
+
+    SetType poset;
+    Set *followpos;
+
     const char **(*cmap)(void *vp, const char **from, int len);
 };
 
@@ -76,4 +103,7 @@ void        sort_DFA_states (struct DFA_states *dfas);
 void        add_DFA_tran    (struct DFA_states *, struct DFA_state *,
                              int, int, int);
 
+#ifdef __cplusplus
+}
+#endif
 #endif