Imported version 0.2-1
[mstardict] / src / lib / virtualdictplugin.h
1 #ifndef _STARDICT_VIRTUALDICT_PLUGIN_H_
2 #define _STARDICT_VIRTUALDICT_PLUGIN_H_
3
4 struct StarDictVirtualDictPlugInObject{
5         StarDictVirtualDictPlugInObject();
6
7         typedef void (*lookup_func_t)(const char *text, char ***pppWord, char ****ppppWordData);
8         lookup_func_t lookup_func;
9         const char *dict_name;
10 };
11
12 #endif