]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cgi-bin/help-index.h
Load cups into easysw/current.
[thirdparty/cups.git] / cgi-bin / help-index.h
index d564663a098bd4357f72aaefa00a5ab6dabb5e2f..c7cbe2b54db57099819215d3b75b1f76e4b48e88 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * "$Id: help-index.h 5143 2006-02-21 19:13:01Z mike $"
+ * "$Id: help-index.h 6257 2007-02-11 01:11:57Z mike $"
  *
  *   On-line help index definitions for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products.
+ *   Copyright 1997-2007 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
  * Data structures...
  */
 
-typedef struct                         /**** Help node structure... ****/
+typedef struct help_word_s             /**** Help word structure... ****/
+{
+  int          count;                  /* Number of occurrences */
+  char         *text;                  /* Word text */
+} help_word_t;
+
+typedef struct help_node_s             /**** Help node structure... ****/
 {
   char         *filename;              /* Filename, relative to help dir */
   char         *section;               /* Section name (NULL if none) */
   char         *anchor;                /* Anchor name (NULL if none) */
   char         *text;                  /* Text in anchor */
+  cups_array_t *words;                 /* Words after this node */
   time_t       mtime;                  /* Last modification time */
   off_t                offset;                 /* Offset in file */
   size_t       length;                 /* Length in bytes */
   int          score;                  /* Search score */
 } help_node_t;
 
-typedef struct                         /**** Help index structure ****/
+typedef struct help_index_s            /**** Help index structure ****/
 {
   int          search;                 /* 1 = search index, 0 = normal */
   cups_array_t *nodes;                 /* Nodes sorted by filename */
@@ -73,5 +80,5 @@ extern help_index_t   *helpSearchIndex(help_index_t *hi, const char *query,
 #endif /* !_CUPS_HELP_INDEX_H_ */
 
 /*
- * End of "$Id: help-index.h 5143 2006-02-21 19:13:01Z mike $".
+ * End of "$Id: help-index.h 6257 2007-02-11 01:11:57Z mike $".
  */