|
Graphviz
2.29.20120524.0446
|
00001 /* $Id$ $Revision$ */ 00002 /* vim:set shiftwidth=4 ts=8: */ 00003 00004 /************************************************************************* 00005 * Copyright (c) 2011 AT&T Intellectual Property 00006 * All rights reserved. This program and the accompanying materials 00007 * are made available under the terms of the Eclipse Public License v1.0 00008 * which accompanies this distribution, and is available at 00009 * http://www.eclipse.org/legal/epl-v10.html 00010 * 00011 * Contributors: See CVS logs. Details at http://www.graphviz.org/ 00012 *************************************************************************/ 00013 00014 #include "gvplugin.h" 00015 00016 extern gvplugin_installed_t gvlayout_neato_types[]; 00017 00018 static gvplugin_api_t apis[] = { 00019 {API_layout, gvlayout_neato_types}, 00020 {(api_t)0, 0}, 00021 }; 00022 00023 #ifdef WIN32_DLL /*visual studio*/ 00024 #ifndef GVPLUGIN_NEATO_LAYOUT_EXPORTS 00025 __declspec(dllimport) gvplugin_library_t gvplugin_neato_layout_LTX_library = { "neato_layout", apis }; 00026 #else 00027 __declspec(dllexport) gvplugin_library_t gvplugin_neato_layout_LTX_library = { "neato_layout", apis }; 00028 #endif 00029 #else /*end visual studio*/ 00030 #ifdef GVDLL 00031 __declspec(dllexport) gvplugin_library_t gvplugin_neato_layout_LTX_library = { "neato_layout", apis }; 00032 #else 00033 gvplugin_library_t gvplugin_neato_layout_LTX_library = { "neato_layout", apis }; 00034 #endif 00035 #endif 00036
1.7.5