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 gvrender_pango_types;
00020 extern gvplugin_installed_t gvtextlayout_pango_types;
00021 extern gvplugin_installed_t gvloadimage_pango_types;
00022 extern gvplugin_installed_t gvdevice_pango_types;
00023
00024 static gvplugin_api_t apis[] = {
00025 {API_render, &gvrender_pango_types},
00026 {API_textlayout, &gvtextlayout_pango_types},
00027 {API_loadimage, &gvloadimage_pango_types},
00028 {API_device, &gvdevice_pango_types},
00029 {(api_t)0, 0},
00030 };
00031
00032 gvplugin_library_t gvplugin_pango_LTX_library = { "cairo", apis };