Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Another try at cleaning up the function types
[simgrid.git] / include / xbt / graphxml_parse.h
index 81a98fd..2c26c35 100644 (file)
 #include "xbt/graphxml.h"
 
 /* Entry-point of the graphxml parser. */
-extern int_pf_void_t xbt_graph_parse;
+extern int_f_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_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;
+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;
 
 void xbt_graph_parse_open(const char *file);
 void xbt_graph_parse_close(void);