home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / yagirc-0.51.tar.gz / yagirc-0.51.tar / yagirc-0.51 / gui_setup_outlook.h < prev    next >
C/C++ Source or Header  |  1998-05-11  |  449b  |  24 lines

  1. #ifndef __GUI_SETUP_OUTLOOK_H
  2. #define __GUI_SETUP_OUTLOOK_H
  3.  
  4. typedef struct
  5. {
  6.     char *name;
  7.  
  8.     char *pixmap;
  9.     GdkColor fg, bg;
  10.     GdkColor colors[15];
  11. }
  12. SETUP_THEME_REC;
  13.  
  14. extern GList *themes;
  15.  
  16. void gui_setup_outlook(GtkWidget *vbox);
  17. void gui_setup_outlook_accept(void);
  18.  
  19. /* add theme record to GList with sort */
  20. int gui_add_theme_rec(GList **themes, char *data);
  21. void gui_remove_theme_rec(GList **themes, SETUP_THEME_REC *theme);
  22.  
  23. #endif
  24.