⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zinfo.h

📁 harvest是一个下载html网页得机器人
💻 H
字号:
/* $Id: zinfo.h,v 1.16 2003/06/30 19:37:12 adam Exp $   Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002   Index Data ApsThis file is part of the Zebra server.Zebra is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the FreeSoftware Foundation; either version 2, or (at your option) any laterversion.Zebra is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY orFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public Licensefor more details.You should have received a copy of the GNU General Public Licensealong with Zebra; see the file LICENSE.zebra.  If not, write to theFree Software Foundation, 59 Temple Place - Suite 330, Boston, MA02111-1307, USA.*/#ifndef ZINFO_H#define ZINFO_H#include <data1.h>#include "zebraapi.h"#include "recindex.h"YAZ_BEGIN_CDECLtypedef struct zebraExplainInfo *ZebraExplainInfo;typedef struct zebDatabaseInfo ZebDatabaseInfo;ZebraExplainInfo zebraExplain_open (Records records, data1_handle dh,				    Res res,				    int writeFlag,				    void *updateHandle,				    int (*updateFunc)(void *handle,						      Record drec,						      data1_node *n));void zebraExplain_close (ZebraExplainInfo zei);int zebraExplain_curDatabase (ZebraExplainInfo zei, const char *database);int zebraExplain_newDatabase (ZebraExplainInfo zei, const char *database,			      int explain_database);int zebraExplain_lookupSU (ZebraExplainInfo zei, int set, int use);int zebraExplain_addSU (ZebraExplainInfo zei, int set, int use);void zebraExplain_addSchema (ZebraExplainInfo zei, Odr_oid *oid);void zebraExplain_recordCountIncrement (ZebraExplainInfo zei, int adjust_num);void zebraExplain_recordBytesIncrement (ZebraExplainInfo zei, int adjust_num);int zebraExplain_runNumberIncrement (ZebraExplainInfo zei, int adjust_num);void zebraExplain_loadAttsets (data1_handle dh, Res res);void zebraExplain_flush (ZebraExplainInfo zei, void *updateHandle);int zebraExplain_lookup_ord (ZebraExplainInfo zei, int ord,			     const char **db, int *set, int *use);int zebraExplain_trav_ord(ZebraExplainInfo zei, void *handle,			  int (*f)(void *handle, int ord));int zebraExplain_removeDatabase(ZebraExplainInfo zei, void *updateHandle);typedef struct {    int recordSize;    off_t recordOffset;    int runNumber;} RecordAttr;RecordAttr *rec_init_attr (ZebraExplainInfo zei, Record rec);YAZ_END_CDECL#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -