Scan feature added, not documented yet
[idzebra-moved-to-github.git] / perl / zebra_perl.h
index 7020563..3a3135c 100644 (file)
@@ -31,7 +31,7 @@ typedef struct {
   char *base; 
   int  sysno;
   int  score;
-  oid_value format;    /* record syntax */
+  char *format;    /* record syntax */
   RetrievalRecordBuf *buf;
 } RetrievalRecord;
 
@@ -39,13 +39,13 @@ typedef struct {
 typedef struct {
     int occurrences;     /* scan term occurrences */
     char *term;          /* scan term string */
-} ScanEntry;
+} scanEntry;
 
 typedef struct {
   int num_entries;
   int position;
   int is_partial;
-  ScanEntry *entries;
+  scanEntry *entries;
 } ScanObj;
 
 #endif