gvplugin_neato_layout.c 923 B

1234567891011121314151617181920212223242526272829
  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. #include "config.h"
  11. #include <gvc/gvplugin.h>
  12. extern gvplugin_installed_t gvlayout_neato_types[];
  13. static gvplugin_api_t apis[] = {
  14. {API_layout, gvlayout_neato_types},
  15. {(api_t)0, 0},
  16. };
  17. #ifdef GVDLL
  18. #define GVPLUGIN_NEATO_LAYOUT_API __declspec(dllexport)
  19. #else
  20. #define GVPLUGIN_NEATO_LAYOUT_API
  21. #endif
  22. GVPLUGIN_NEATO_LAYOUT_API gvplugin_library_t
  23. gvplugin_neato_layout_LTX_library = {"neato_layout", apis};