Add a Windows implementation of getdns_context_set_resolvconf().

Have it return GETDNS_RETURN_NOT_IMPLEMENTED. This function is listed in the shared library exports, and it's part of the official API, so we need it.
This commit is contained in:
Jim Hague 2019-10-18 19:04:17 +01:00
parent 73e9c32655
commit 87177cc103
1 changed files with 6 additions and 0 deletions

View File

@ -1112,6 +1112,12 @@ set_os_defaults_windows(getdns_context *context)
return GETDNS_RETURN_GOOD;
} /* set_os_defaults_windows */
getdns_return_t
getdns_context_set_resolvconf(getdns_context *context, const char *resolvconf)
{
return GETDNS_RETURN_NOT_IMPLEMENTED;
}
#else
getdns_return_t