Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Catch up with last cleanup in the function type naming schema
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 18 Jul 2006 11:49:13 +0000 (11:49 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 18 Jul 2006 11:49:13 +0000 (11:49 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2612 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/xbt/graphxml_parse.h

index c6b54d0..81a98fd 100644 (file)
 #include "xbt/graphxml.h"
 
 /* Entry-point of the graphxml parser. */
 #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. */
 
 /* 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);
 
 void xbt_graph_parse_open(const char *file);
 void xbt_graph_parse_close(void);