From: mquinson Date: Tue, 18 Jul 2006 11:49:13 +0000 (+0000) Subject: Catch up with last cleanup in the function type naming schema X-Git-Tag: v3.3~2747 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1e305b772603f6cfd6ba15d1847ca90e9dd3c288?ds=sidebyside Catch up with last cleanup in the function type naming schema git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2612 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/graphxml_parse.h b/include/xbt/graphxml_parse.h index c6b54d0ebe..81a98fd288 100644 --- a/include/xbt/graphxml_parse.h +++ b/include/xbt/graphxml_parse.h @@ -13,16 +13,16 @@ #include "xbt/graphxml.h" /* Entry-point of the graphxml parser. */ -extern int_f_void_t xbt_graph_parse; +extern int_pf_void_t xbt_graph_parse; /* Hook for the different tags. They can be redefined at will whereas the versions without the _fun can't. */ -extern void_f_void_t STag_graphxml_graph_fun; -extern void_f_void_t ETag_graphxml_graph_fun; -extern void_f_void_t STag_graphxml_node_fun; -extern void_f_void_t ETag_graphxml_node_fun; -extern void_f_void_t STag_graphxml_edge_fun; -extern void_f_void_t ETag_graphxml_edge_fun; +extern void_pf_void_t STag_graphxml_graph_fun; +extern void_pf_void_t ETag_graphxml_graph_fun; +extern void_pf_void_t STag_graphxml_node_fun; +extern void_pf_void_t ETag_graphxml_node_fun; +extern void_pf_void_t STag_graphxml_edge_fun; +extern void_pf_void_t ETag_graphxml_edge_fun; void xbt_graph_parse_open(const char *file); void xbt_graph_parse_close(void);