|
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_dot_layout[]; 00017 00018 static gvplugin_api_t apis[] = { 00019 {API_layout, gvlayout_dot_layout}, 00020 {(api_t)0, 0}, 00021 }; 00022 /*visual studio*/ 00023 #ifdef WIN32_DLL 00024 #ifndef GVPLUGIN_DOT_LAYOUT_EXPORTS 00025 __declspec(dllimport) gvplugin_library_t gvplugin_dot_layout_LTX_library = { "dot_layout", apis }; 00026 #else 00027 __declspec(dllexport) gvplugin_library_t gvplugin_dot_layout_LTX_library = { "dot_layout", apis }; 00028 #endif 00029 #endif 00030 00031 00032 00033 /*end visual studio*/ 00034 00035 00036 #ifndef WIN32_DLL 00037 #ifdef GVDLL 00038 __declspec(dllexport) gvplugin_library_t gvplugin_dot_layout_LTX_library = { "dot_layout", apis }; 00039 #else 00040 gvplugin_library_t gvplugin_dot_layout_LTX_library = { "dot_layout", apis }; 00041 #endif 00042 #endif 00043 00044
1.7.5