/misc/src/release/graphviz-2.18-1/src/graphviz-2.18/plugin/core/gvplugin_core.c

Go to the documentation of this file.
00001 /* $Id: gvplugin_core.c,v 1.15 2007/09/06 17:32:55 ellson Exp $ $Revision: 1.15 $ */
00002 /* vim:set shiftwidth=4 ts=8: */
00003 
00004 /**********************************************************
00005 *      This software is part of the graphviz package      *
00006 *                http://www.graphviz.org/                 *
00007 *                                                         *
00008 *            Copyright (c) 1994-2004 AT&T Corp.           *
00009 *                and is licensed under the                *
00010 *            Common Public License, Version 1.0           *
00011 *                      by AT&T Corp.                      *
00012 *                                                         *
00013 *        Information and Software Systems Research        *
00014 *              AT&T Research, Florham Park NJ             *
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 };

Generated on Mon Mar 31 19:03:28 2008 for Graphviz by  doxygen 1.5.1