00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "gvplugin.h"
00018
00019 extern gvplugin_installed_t gvdevice_dot_types;
00020 extern gvplugin_installed_t gvdevice_ps_types;
00021 extern gvplugin_installed_t gvdevice_fig_types;
00022 extern gvplugin_installed_t gvdevice_svg_types;
00023 extern gvplugin_installed_t gvdevice_vml_types;
00024 extern gvplugin_installed_t gvdevice_map_types;
00025 extern gvplugin_installed_t gvrender_dot_types;
00026 extern gvplugin_installed_t gvrender_ps_types;
00027 extern gvplugin_installed_t gvrender_fig_types;
00028 extern gvplugin_installed_t gvrender_svg_types;
00029 extern gvplugin_installed_t gvrender_vml_types;
00030 extern gvplugin_installed_t gvrender_map_types;
00031 extern gvplugin_installed_t gvloadimage_core_types;
00032
00033 static gvplugin_api_t apis[] = {
00034 {API_device, &gvdevice_dot_types},
00035 {API_device, &gvdevice_ps_types},
00036 {API_device, &gvdevice_fig_types},
00037 {API_device, &gvdevice_svg_types},
00038 {API_device, &gvdevice_vml_types},
00039 {API_device, &gvdevice_map_types},
00040 {API_render, &gvrender_dot_types},
00041 {API_render, &gvrender_ps_types},
00042 {API_render, &gvrender_fig_types},
00043 {API_render, &gvrender_svg_types},
00044 {API_render, &gvrender_vml_types},
00045 {API_render, &gvrender_map_types},
00046 {API_loadimage, &gvloadimage_core_types},
00047 {(api_t)0, 0},
00048 };
00049
00050 gvplugin_library_t gvplugin_core_LTX_library = { "core", apis };