more linking issues
This commit is contained in:
parent
54b05dd20a
commit
1252de8fe3
|
@ -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();
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue