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