Graphviz 12.0.1~dev.20240716.0800
Loading...
Searching...
No Matches
gvplugin_core.c
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#include <gvc/gvplugin.h>
12
22
32
34
35
36
37
38static gvplugin_api_t apis[] = {
39 {API_device, gvdevice_dot_types},
40 {API_device, gvdevice_fig_types},
41 {API_device, gvdevice_map_types},
42 {API_device, gvdevice_ps_types},
43 {API_device, gvdevice_svg_types},
44 {API_device, gvdevice_json_types},
45 {API_device, gvdevice_tk_types},
46 {API_device, gvdevice_pic_types},
47 {API_device, gvdevice_pov_types},
48
49 {API_render, gvrender_dot_types},
50 {API_render, gvrender_fig_types},
51 {API_render, gvrender_map_types},
52 {API_render, gvrender_ps_types},
53 {API_render, gvrender_svg_types},
54 {API_render, gvrender_json_types},
55 {API_render, gvrender_tk_types},
56 {API_render, gvrender_pic_types},
57 {API_render, gvrender_pov_types},
58
59 {API_loadimage, gvloadimage_core_types},
60
61 {(api_t)0, 0},
62};
63
64#ifdef GVDLL
65#define GVPLUGIN_CORE_API __declspec(dllexport)
66#else
67#define GVPLUGIN_CORE_API
68#endif
69
api_t
Definition gvcext.h:32
gvplugin_installed_t gvdevice_fig_types[]
gvplugin_installed_t gvrender_dot_types[]
gvplugin_installed_t gvrender_ps_types[]
gvplugin_installed_t gvrender_pov_types[]
gvplugin_installed_t gvdevice_pic_types[]
gvplugin_installed_t gvrender_map_types[]
gvplugin_installed_t gvdevice_tk_types[]
gvplugin_installed_t gvrender_tk_types[]
gvplugin_installed_t gvdevice_ps_types[]
gvplugin_installed_t gvdevice_json_types[]
gvplugin_installed_t gvdevice_svg_types[]
gvplugin_installed_t gvdevice_dot_types[]
GVPLUGIN_CORE_API gvplugin_library_t gvplugin_core_LTX_library
gvplugin_installed_t gvdevice_map_types[]
gvplugin_installed_t gvdevice_pov_types[]
gvplugin_installed_t gvrender_json_types[]
gvplugin_installed_t gvrender_pic_types[]
gvplugin_installed_t gvrender_fig_types[]
gvplugin_installed_t gvloadimage_core_types[]
static gvplugin_api_t apis[]
gvplugin_installed_t gvrender_svg_types[]
#define GVPLUGIN_CORE_API
ingroup plugin_api
Definition gvplugin.h:35