gvplugin_gdk.c 946 B

12345678910111213141516171819202122232425262728
  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 <gvc/gvplugin.h>
  11. extern gvplugin_installed_t gvdevice_gdk_types[];
  12. extern gvplugin_installed_t gvloadimage_gdk_types[];
  13. static gvplugin_api_t apis[] = {
  14. {API_device, gvdevice_gdk_types},
  15. {API_loadimage, gvloadimage_gdk_types},
  16. {(api_t)0, 0},
  17. };
  18. #ifdef GVDLL
  19. #define GVPLUGIN_GDK_API __declspec(dllexport)
  20. #else
  21. #define GVPLUGIN_GDK_API
  22. #endif
  23. GVPLUGIN_GDK_API gvplugin_library_t gvplugin_gdk_LTX_library = {"gdk", apis};