Remove redundant code
[idzebra-moved-to-github.git] / index / indexplugin.h
1 #ifndef INDEXPLUGINH
2 #define INDEXPLUGINH
3
4 #include "../index/index.h"
5 #include <assert.h>
6
7
8 typedef int (*indexList)(ZebraHandle zh, const char *driverArg, enum zebra_recctrl_action_t action);
9
10 typedef struct 
11 {
12         indexList idxList;
13 } zebra_index_plugin_object;
14
15 void addDriverFunction(indexList);
16 void zebraIndexBuffer(ZebraHandle zh, char *data, int dataLength, enum zebra_recctrl_action_t action, char *name);
17
18 #endif