annotate toolboxes/graph_visualisation/include/graphviz/gvplugin_loadimage.h @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 /* $Id: gvplugin_loadimage.h,v 1.12 2009/06/03 01:10:53 ellson Exp $ $Revision: 1.12 $ */
Daniel@0 2 /* vim:set shiftwidth=4 ts=8: */
Daniel@0 3
Daniel@0 4 /**********************************************************
Daniel@0 5 * This software is part of the graphviz package *
Daniel@0 6 * http://www.graphviz.org/ *
Daniel@0 7 * *
Daniel@0 8 * Copyright (c) 1994-2004 AT&T Corp. *
Daniel@0 9 * and is licensed under the *
Daniel@0 10 * Common Public License, Version 1.0 *
Daniel@0 11 * by AT&T Corp. *
Daniel@0 12 * *
Daniel@0 13 * Information and Software Systems Research *
Daniel@0 14 * AT&T Research, Florham Park NJ *
Daniel@0 15 **********************************************************/
Daniel@0 16
Daniel@0 17 #ifndef GVPLUGIN_IMAGELOAD_H
Daniel@0 18 #define GVPLUGIN_IMAGELOAD_H
Daniel@0 19
Daniel@0 20 #include "types.h"
Daniel@0 21 #include "gvplugin.h"
Daniel@0 22 #include "gvcjob.h"
Daniel@0 23
Daniel@0 24 #ifdef __cplusplus
Daniel@0 25 extern "C" {
Daniel@0 26 #endif
Daniel@0 27
Daniel@0 28 #ifdef GVDLL
Daniel@0 29 # define extern __declspec(dllexport)
Daniel@0 30 #endif
Daniel@0 31
Daniel@0 32 /*visual studio*/
Daniel@0 33 #ifdef WIN32_DLL
Daniel@0 34 #ifndef GVC_EXPORTS
Daniel@0 35 #define extern __declspec(dllimport)
Daniel@0 36 #endif
Daniel@0 37 #endif
Daniel@0 38 /*end visual studio*/
Daniel@0 39
Daniel@0 40 extern boolean gvusershape_file_access(usershape_t *us);
Daniel@0 41 extern void gvusershape_file_release(usershape_t *us);
Daniel@0 42
Daniel@0 43 struct gvloadimage_engine_s {
Daniel@0 44 void (*loadimage) (GVJ_t *job, usershape_t *us, boxf b, boolean filled);
Daniel@0 45 };
Daniel@0 46
Daniel@0 47 #ifdef extern
Daniel@0 48 #undef extern
Daniel@0 49 #endif
Daniel@0 50
Daniel@0 51 #ifdef __cplusplus
Daniel@0 52 }
Daniel@0 53 #endif
Daniel@0 54 #endif /* GVPLUGIN_IMAGELOAD_H */