Imported version 0.2-1
[mstardict] / src / lib / specialdictplugin.h
1 #ifndef _STARDICT_SPECIALDICT_PLUGIN_H_
2 #define _STARDICT_SPECIALDICT_PLUGIN_H_
3
4 #include <gtk/gtk.h>
5
6 struct StarDictSpecialDictPlugInObject{
7         StarDictSpecialDictPlugInObject();
8
9         typedef void (*render_widget_func_t)(bool ismainwin, size_t dictid, const gchar *orig_word, gchar **Word, gchar ***WordData, GtkWidget **widget);
10         render_widget_func_t render_widget_func;
11         const char *dict_type;
12 };
13
14 #endif