home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Source / WAIS / ir / sigindex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  920 b   |  52 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    Brewster@think.com
  6. */
  7.  
  8. /* Include file for the irhash.c file.
  9.    Implements the building functions in irext.h */
  10.  
  11. #ifndef SIGINDEX_H
  12. #define SIGINDEX_H
  13.  
  14. #include "cdialect.h"
  15.  
  16. #ifdef __cplusplus
  17. /* declare these as C style functions */
  18. extern "C"
  19.     {
  20. #endif /* def __cplusplus */
  21.  
  22.  
  23. /* ============================
  24.  * ===  Building Functions  ===
  25.  * ============================*/
  26.  
  27. long sig_init_add_word _AP ((database *db, long parameter1, long parameter2));
  28.  
  29. long sig_add_word _AP((
  30.                char *word,
  31.                long char_pos,
  32.                long line_pos,
  33.                long weight,
  34.                long doc_id,
  35.                time_t date,
  36.                database* db));
  37.  
  38. long sig_finished_add_word _AP((database *db));
  39.  
  40.  
  41. #ifdef __cplusplus
  42.     }
  43. #endif /* def __cplusplus */
  44.  
  45. #endif /* nded SIGINDEX_H */
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.