more linking issues

This commit is contained in:
Arvid Norberg 2013-06-23 22:36:07 +00:00
parent 54b05dd20a
commit 1252de8fe3
2 changed files with 10 additions and 6 deletions

View File

@ -30,11 +30,13 @@ POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.hpp" // for EXPORT
// returns the port the DHT is running on
int start_dht();
int EXPORT start_dht();
// the number of DHT messages received
int num_dht_hits();
int EXPORT num_dht_hits();
void stop_dht();
void EXPORT stop_dht();

View File

@ -30,11 +30,13 @@ POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.hpp" // for EXPORT
// returns the port the peer is running on
int start_peer();
int EXPORT start_peer();
// the number of incoming connections to this peer
int num_peer_hits();
int EXPORT num_peer_hits();
void stop_peer();
void EXPORT stop_peer();