/* idfile.h -- defs for mkid database file header & interface to idfile.c Copyright (C) 1986, 1995 Greg McGary This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _idfile_h_ #define _idfile_h_ 1 #include #include #define IDFILE "ID" struct idhead { unsigned char idh_magic[2]; #define IDH_MAGIC_0 ('I'|0x80) #define IDH_MAGIC_1 ('D'|0x80) unsigned char idh_pad_1; unsigned char idh_version; #define IDH_VERSION 3 unsigned short idh_flags; #define IDH_COUNTS 0x0001 /* occurrence counts are included with each token */ uintmin32_t idh_args; /* total # of args for mkid update */ uintmin32_t idh_paths; /* total # of file names for mkid update */ uintmin32_t idh_tokens; /* total # of tokens */ uintmin32_t idh_buf_size; /* # of bytes in longest entry (bufsiz for lid) */ uintmin32_t idh_vec_size; /* # of hits in longest entry (max vector size for lid) */ intmin32_t idh_args_offset; /* file offset of args */ intmin32_t idh_tokens_offset; /* file offset of tokens section */ intmin32_t idh_end_offset; /* file offset beyond tokens section */ }; struct idarg; FILE *init_idfile (char const *id_file, struct idhead *idhp, struct idarg **id_args); int read_idhead (FILE *input_FILE, struct idhead *idh); int write_idhead (FILE *input_FILE, struct idhead *idh); int sizeof_idhead (void); #endif /* _idfile_h_ */