mirror of https://github.com/getdnsapi/getdns.git
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:
parent
73e9c32655
commit
87177cc103
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue