gvplugin_lasi.c 1.0 KB

123456789101112131415161718192021222324252627282930
  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_lasi_types[];
  12. extern gvplugin_installed_t gvrender_lasi_types[];
  13. extern gvplugin_installed_t gvloadimage_lasi_types[];
  14. static gvplugin_api_t apis[] = {
  15. {API_device, gvdevice_lasi_types},
  16. {API_render, gvrender_lasi_types},
  17. {API_loadimage, gvloadimage_lasi_types},
  18. {(api_t)0, 0},
  19. };
  20. #ifdef GVDLL
  21. #define GVPLUGIN_LASI_API __declspec(dllexport)
  22. #else
  23. #define GVPLUGIN_LASI_API
  24. #endif
  25. GVPLUGIN_LASI_API gvplugin_library_t gvplugin_lasi_LTX_library = {"lasi", apis};