Put local variables footer in all c, h files.
[idzebra-moved-to-github.git] / include / idzebra / recctrl.h
index e2183e5..fddb08a 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: recctrl.h,v 1.13 2005-08-18 12:50:17 adam Exp $
-   Copyright (C) 1995-2005
+/* $Id: recctrl.h,v 1.19 2006-05-10 08:13:20 adam Exp $
+   Copyright (C) 1995-2006
    Index Data ApS
 
 This file is part of the Zebra server.
@@ -20,8 +20,8 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
 */
 
-#ifndef RECCTRL_H
-#define RECCTRL_H
+#ifndef IDZEBRA_RECCTRL_H
+#define IDZEBRA_RECCTRL_H
 
 #include <sys/types.h>
 #include <yaz/proto.h>
@@ -49,8 +49,8 @@ typedef struct {
     int  attrUse;
 #endif
     unsigned index_type;
-    char *index_name;
-    char *term_buf;
+    const char *index_name;
+    const char *term_buf;
     int  term_len;
     zint seqno;
     zint record_id;
@@ -96,6 +96,7 @@ struct recRetrieveCtrl {
     char      *encoding;              /* preferred character encoding      */
     zint      localno;                /* local id of record                */
     int       score;                  /* score 0-1000 or -1 if none        */
+    int       staticrank;             /* static rank >= 0,  0 if none */
     int       recordSize;             /* size of record in bytes */
     char      *fname;                 /* name of file (or NULL if internal) */
     data1_handle dh;
@@ -117,7 +118,7 @@ struct recType
     int version;
     char *name;                           /* Name of record type */
     void *(*init)(Res res, RecType recType);  /* Init function - called once */
-    void (*config)(void *clientData, Res res, const char *args); /* Config */
+    ZEBRA_RES (*config)(void *clientData, Res res, const char *args); /* Config */
     void (*destroy)(void *clientData);    /* Destroy function */
     int  (*extract)(void *clientData,
                    struct recExtractCtrl *ctrl);   /* Extract proc */
@@ -137,6 +138,14 @@ YAZ_EXPORT
 RecTypeClass recTypeClass_create (Res res, NMEM nmem);
 
 YAZ_EXPORT
+void recTypeClass_load_modules(RecTypeClass *rts, NMEM nmem,
+                              const char *module_path);
+
+YAZ_EXPORT
+RecTypeClass recTypeClass_add_modules(Res res, NMEM nmem,
+                                     const char *module_path);
+
+YAZ_EXPORT
 void recTypeClass_destroy(RecTypeClass rtc);
 
 YAZ_EXPORT
@@ -160,3 +169,11 @@ RecType recType_byName(RecTypes rts, Res res, const char *name,
 YAZ_END_CDECL
 
 #endif
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+