Example #1
0
void OW_Free_dnssd_library(void)
{
	if (libdnssd) {
		DL_close(libdnssd);
		libdnssd = NULL;
	}
}
Example #2
0
int OW_Free_dnssd_library(void)
{
	int rc = -1;
	if (libdnssd) {
		rc = DL_close(libdnssd);
		libdnssd = NULL;
	}
	return rc;
}
Example #3
0
void fini(void)
{
    is_available = false;

    if (lib_handle != 0) {
#ifndef TARGET_WINNT
        DL_close(lib_handle);
#endif // TARGET_WINNT
        lib_handle = 0;
    }
}