Mercurial > hg > camir-aes2014
annotate toolboxes/graph_visualisation/include/graphviz/gvplugin_loadimage.h @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 /* $Id: gvplugin_loadimage.h,v 1.12 2009/06/03 01:10:53 ellson Exp $ $Revision: 1.12 $ */ |
wolffd@0 | 2 /* vim:set shiftwidth=4 ts=8: */ |
wolffd@0 | 3 |
wolffd@0 | 4 /********************************************************** |
wolffd@0 | 5 * This software is part of the graphviz package * |
wolffd@0 | 6 * http://www.graphviz.org/ * |
wolffd@0 | 7 * * |
wolffd@0 | 8 * Copyright (c) 1994-2004 AT&T Corp. * |
wolffd@0 | 9 * and is licensed under the * |
wolffd@0 | 10 * Common Public License, Version 1.0 * |
wolffd@0 | 11 * by AT&T Corp. * |
wolffd@0 | 12 * * |
wolffd@0 | 13 * Information and Software Systems Research * |
wolffd@0 | 14 * AT&T Research, Florham Park NJ * |
wolffd@0 | 15 **********************************************************/ |
wolffd@0 | 16 |
wolffd@0 | 17 #ifndef GVPLUGIN_IMAGELOAD_H |
wolffd@0 | 18 #define GVPLUGIN_IMAGELOAD_H |
wolffd@0 | 19 |
wolffd@0 | 20 #include "types.h" |
wolffd@0 | 21 #include "gvplugin.h" |
wolffd@0 | 22 #include "gvcjob.h" |
wolffd@0 | 23 |
wolffd@0 | 24 #ifdef __cplusplus |
wolffd@0 | 25 extern "C" { |
wolffd@0 | 26 #endif |
wolffd@0 | 27 |
wolffd@0 | 28 #ifdef GVDLL |
wolffd@0 | 29 # define extern __declspec(dllexport) |
wolffd@0 | 30 #endif |
wolffd@0 | 31 |
wolffd@0 | 32 /*visual studio*/ |
wolffd@0 | 33 #ifdef WIN32_DLL |
wolffd@0 | 34 #ifndef GVC_EXPORTS |
wolffd@0 | 35 #define extern __declspec(dllimport) |
wolffd@0 | 36 #endif |
wolffd@0 | 37 #endif |
wolffd@0 | 38 /*end visual studio*/ |
wolffd@0 | 39 |
wolffd@0 | 40 extern boolean gvusershape_file_access(usershape_t *us); |
wolffd@0 | 41 extern void gvusershape_file_release(usershape_t *us); |
wolffd@0 | 42 |
wolffd@0 | 43 struct gvloadimage_engine_s { |
wolffd@0 | 44 void (*loadimage) (GVJ_t *job, usershape_t *us, boxf b, boolean filled); |
wolffd@0 | 45 }; |
wolffd@0 | 46 |
wolffd@0 | 47 #ifdef extern |
wolffd@0 | 48 #undef extern |
wolffd@0 | 49 #endif |
wolffd@0 | 50 |
wolffd@0 | 51 #ifdef __cplusplus |
wolffd@0 | 52 } |
wolffd@0 | 53 #endif |
wolffd@0 | 54 #endif /* GVPLUGIN_IMAGELOAD_H */ |