From: erg Date: Wed, 9 Jan 2008 22:36:19 +0000 (+0000) Subject: Commit version of gvpr using the cgraph library. The relevant X-Git-Tag: LAST_LIBGRAPH~32^2~4886 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=65e6b37cefeb14e5253babba55f026d6db0256d4;p=graphviz Commit version of gvpr using the cgraph library. The relevant code is wrapped in #ifdef USE_CGRAPH. --- diff --git a/cmd/gvpr/compile.h b/cmd/gvpr/compile.h index 6be651508..7fa45f6bc 100644 --- a/cmd/gvpr/compile.h +++ b/cmd/gvpr/compile.h @@ -82,7 +82,7 @@ extern "C" { extern Agraph_t *openG(char *name, Agdesc_t); extern Agraph_t *openSubg(Agraph_t * g, char *name); extern Agnode_t *openNode(Agraph_t * g, char *name); - extern Agedge_t *openEdge(Agnode_t * t, Agnode_t * h, char *key); + extern Agedge_t *openEdge(Agraph_t* g, Agnode_t * t, Agnode_t * h, char *key); #endif