home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / app / docindex.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-12-17  |  916 b   |  30 lines

  1. /* docindex.h - Header file for the document index.
  2.  *
  3.  * Copyright (C) 1998 Chris Lahey.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2, or (at your option)
  8.  * any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  */
  15.  
  16. #ifndef __DOCINDEX_H__
  17. #define __DOCINDEX_H__
  18.  
  19.  
  20. void    document_index_create     (void);
  21. void    document_index_free       (void);
  22.  
  23. void    document_index_add        (gchar *label);
  24.  
  25. FILE  * document_index_parse_init (void);
  26. gchar * document_index_parse_line (FILE  *fp);
  27.  
  28.  
  29. #endif /* __DOCINDEX_H__ */
  30.