gvconfig.h 878 B

1234567891011121314151617181920212223242526272829
  1. /// @file
  2. /// @ingroup gvc_api
  3. /*************************************************************************
  4. * Copyright (c) 2011 AT&T Intellectual Property
  5. * All rights reserved. This program and the accompanying materials
  6. * are made available under the terms of the Eclipse Public License v1.0
  7. * which accompanies this distribution, and is available at
  8. * https://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors: Details at https://graphviz.org
  11. *************************************************************************/
  12. /* Header used by plugins */
  13. #pragma once
  14. #include "gvplugin.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. extern void gvconfig_plugin_install_from_library(GVC_t * gvc,
  19. char *package_path,
  20. gvplugin_library_t *library);
  21. #ifdef __cplusplus
  22. }
  23. #endif