#ifndef _STARDICT_CUSTOMDICT_PLUGIN_H_
#define _STARDICT_CUSTOMDICT_PLUGIN_H_
#ifdef _WIN32
#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else
# define DLLIMPORT __declspec (dllimport)
#endif
#else
# define DLLIMPORT
#endif
#include "../../src/lib/plugin.h"
#include "../../src/lib/virtualdictplugin.h"
extern "C" {
DLLIMPORT extern bool stardict_plugin_init(StarDictPlugInObject *obj);
DLLIMPORT extern void stardict_plugin_exit(void);
DLLIMPORT extern bool stardict_virtualdict_plugin_init(StarDictVirtualDictPlugInObject *obj);
}
#endif