Restructured header files. Now zebra_perl.h contains definitions which are
[idzebra-moved-to-github.git] / perl / zebra_perl.h
index 40ba726..aadc620 100644 (file)
@@ -1,5 +1,42 @@
+#ifndef ZEBRA_PERL_H
+#define ZEBRA_PERL_H
 
-#include <zebraapi.h>
-#include <data1.h>
+#include "zebraapi.h"
 #include "zebra_api_ext.h"
 
+typedef struct {
+    char  *groupName;
+    char  *databaseName;
+    char  *path;
+    char  *recordId;
+    char  *recordType;
+    int   flagStoreData;
+    int   flagStoreKeys;
+    int   flagRw;
+    int   fileVerboseLimit;
+    int   databaseNamePath;
+    int   explainDatabase;
+    int   followLinks;
+} recordGroup;
+
+typedef struct {
+  int noOfRecords;
+  ZebraRetrievalRecord *records;
+} RetrievalObj;
+
+typedef struct {
+  int  errCode;        /* non-zero if error when fetching this */
+  char *errString;     /* error string */
+  int  position;       /* position of record in result set (1,2,..) */
+  char *base; 
+  oid_value format;    /* record syntax */
+  RetrievalRecordBuf *buf;
+} RetrievalRecord;
+
+/* Scan Term Descriptor */
+typedef struct {
+    int occurrences;     /* scan term occurrences */
+    char *term;          /* scan term string */
+} ScanEntry;
+
+#endif