From: cherierm Date: Tue, 13 Mar 2007 12:10:35 +0000 (+0000) Subject: exports functions in windows dll X-Git-Tag: v3.3~2107 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/97ea8e6ffb9fade57fa48f52caca2a35b518b6da exports functions in windows dll git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3252 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/graph.h b/include/xbt/graph.h index a3a9b6a766..534472df26 100644 --- a/include/xbt/graph.h +++ b/include/xbt/graph.h @@ -78,9 +78,9 @@ XBT_PUBLIC(xbt_node_t*) xbt_graph_shortest_paths(xbt_graph_t g); if a cycle is detected an exception is raised */ -xbt_node_t* xbt_graph_topo_sort(xbt_graph_t g); +XBT_PUBLIC(xbt_node_t*) xbt_graph_topo_sort(xbt_graph_t g); -xbt_edge_t* xbt_graph_spanning_tree_prim(xbt_graph_t g); +XBT_PUBLIC(xbt_edge_t*) xbt_graph_spanning_tree_prim(xbt_graph_t g);