From 1e305b772603f6cfd6ba15d1847ca90e9dd3c288 Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 18 Jul 2006 11:49:13 +0000 Subject: [PATCH] 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 --- include/xbt/graphxml_parse.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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); -- 2.20.1