* BUG: Fix a missing symbol lookup error.


git-svn-id: svn://localhost/gambas/trunk@6415 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2014-08-03 15:01:00 +00:00
parent 1a1f6047e3
commit 3dbf3ca320
2 changed files with 6 additions and 0 deletions

View file

@ -360,6 +360,11 @@ int dns_thread_getip(CDNSCLIENT *mythis)
return 0;
}
int dns_set_async_mode(int myval, CDNSCLIENT *mythis)
{
mythis->iAsync = myval;
}
/*************************************************************************************
######################################################################################
--------------------- DNSCLIENT GAMBAS INTERFACE IMPLEMENTATION -----------------

View file

@ -64,5 +64,6 @@ void dns_event(CDNSCLIENT *mythis);
void dns_close_all(CDNSCLIENT *mythis);
int dns_thread_getname(CDNSCLIENT *mythis);
int dns_thread_getip(CDNSCLIENT *mythis);
int dns_set_async_mode(int myval,CDNSCLIENT *mythis);
#endif