Fix bug #3380. Initialize widget before callback handler for 'clicked'
[claws.git] / src / plugins / rssyl / opml_import.h
1 #ifndef __OPML_IMPORT
2 #define __OPML_IMPORT
3
4 struct _OPMLImportCtx {
5         GSList *current;
6         gint depth;
7         gint failures;
8 };
9
10 typedef struct _OPMLImportCtx OPMLImportCtx;
11
12 gint rssyl_folder_depth(FolderItem *item);
13 void rssyl_opml_import_func(gchar *title, gchar *url, gint depth, gpointer data);
14
15 #endif /* __OPML_IMPORT */