Graphviz 14.1.3~dev.20260124.0732
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 "config.h"
12
13#include <gvc/gvplugin.h>
14
24
34
36
37
38
39
40static gvplugin_api_t apis[] = {
41 {API_device, gvdevice_dot_types},
42 {API_device, gvdevice_fig_types},
43 {API_device, gvdevice_map_types},
44 {API_device, gvdevice_ps_types},
45 {API_device, gvdevice_svg_types},
46 {API_device, gvdevice_json_types},
47 {API_device, gvdevice_tk_types},
48 {API_device, gvdevice_pic_types},
49 {API_device, gvdevice_pov_types},
50
51 {API_render, gvrender_dot_types},
52 {API_render, gvrender_fig_types},
53 {API_render, gvrender_map_types},
54 {API_render, gvrender_ps_types},
55 {API_render, gvrender_svg_types},
56 {API_render, gvrender_json_types},
57 {API_render, gvrender_tk_types},
58 {API_render, gvrender_pic_types},
59 {API_render, gvrender_pov_types},
60
61 {API_loadimage, gvloadimage_core_types},
62
63 {(api_t)0, 0},
64};
65
66#ifdef GVDLL
67#define GVPLUGIN_CORE_API __declspec(dllexport)
68#else
69#define GVPLUGIN_CORE_API
70#endif
71
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