1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Details at https://graphviz.org
*************************************************************************/
#include <gvc/gvplugin.h>
extern gvplugin_installed_t gvdevice_dot_types[];
extern gvplugin_installed_t gvdevice_fig_types[];
extern gvplugin_installed_t gvdevice_map_types[];
extern gvplugin_installed_t gvdevice_ps_types[];
extern gvplugin_installed_t gvdevice_svg_types[];
extern gvplugin_installed_t gvdevice_json_types[];
extern gvplugin_installed_t gvdevice_tk_types[];
extern gvplugin_installed_t gvdevice_pic_types[];
extern gvplugin_installed_t gvdevice_pov_types[];
extern gvplugin_installed_t gvrender_dot_types[];
extern gvplugin_installed_t gvrender_fig_types[];
extern gvplugin_installed_t gvrender_map_types[];
extern gvplugin_installed_t gvrender_ps_types[];
extern gvplugin_installed_t gvrender_svg_types[];
extern gvplugin_installed_t gvrender_json_types[];
extern gvplugin_installed_t gvrender_tk_types[];
extern gvplugin_installed_t gvrender_pic_types[];
extern gvplugin_installed_t gvrender_pov_types[];
extern gvplugin_installed_t gvloadimage_core_types[];
static gvplugin_api_t apis[] = {
{API_device, gvdevice_dot_types},
{API_device, gvdevice_fig_types},
{API_device, gvdevice_map_types},
{API_device, gvdevice_ps_types},
{API_device, gvdevice_svg_types},
{API_device, gvdevice_json_types},
{API_device, gvdevice_tk_types},
{API_device, gvdevice_pic_types},
{API_device, gvdevice_pov_types},
{API_render, gvrender_dot_types},
{API_render, gvrender_fig_types},
{API_render, gvrender_map_types},
{API_render, gvrender_ps_types},
{API_render, gvrender_svg_types},
{API_render, gvrender_json_types},
{API_render, gvrender_tk_types},
{API_render, gvrender_pic_types},
{API_render, gvrender_pov_types},
{API_loadimage, gvloadimage_core_types},
{(api_t)0, 0},
};
#ifdef GVDLL
#define GVPLUGIN_CORE_API __declspec(dllexport)
#else
#define GVPLUGIN_CORE_API
#endif
GVPLUGIN_CORE_API gvplugin_library_t gvplugin_core_LTX_library = { "core", apis };
|