chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / storage / buffindexed / buffindexed.h
diff --git a/storage/buffindexed/buffindexed.h b/storage/buffindexed/buffindexed.h
deleted file mode 100644 (file)
index 17ab69c..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _BUFFINDEXED_H_
-#define _BUFFINDEXED_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-bool buffindexed_open(int mode);
-bool buffindexed_groupstats(char *group, int *lo, int *hi, int *count, int *flag);
-bool buffindexed_groupadd(char *group, ARTNUM lo, ARTNUM hi, char *flag);
-bool buffindexed_groupdel(char *group);
-bool buffindexed_add(char *group, ARTNUM artnum, TOKEN token, char *data, int len, time_t arrived, time_t expires);
-bool buffindexed_cancel(TOKEN token);
-void *buffindexed_opensearch(char *group, int low, int high);
-bool buffindexed_search(void *handle, ARTNUM *artnum, char **data, int *len, TOKEN *token, time_t *arrived);
-void buffindexed_closesearch(void *handle);
-bool buffindexed_getartinfo(char *group, ARTNUM artnum, TOKEN *token);
-bool buffindexed_expiregroup(char *group, int *lo, struct history *h);
-bool buffindexed_ctl(OVCTLTYPE type, void *val);
-void buffindexed_close(void);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* _BUFFINDEXED_H_ */