https://bugs.winehq.org/show_bug.cgi?id=29231
--- Comment #12 from Andreas Fuchs anduchs@gmail.com --- (In reply to Andreas Fuchs from comment #11)
Black Desert Online Launcher seems to be affected as well...
Ok, I take this back, its something else... But in case someone likes to debug their problems, here's some code-snipped...
Cheers...
INT WINAPI WSALookupServiceBeginW( LPWSAQUERYSETW lpqsRestrictions, DWORD dwControlFlags, LPHANDLE lphLookup) { FIXME("(%p 0x%08x %p) Stub!\n", lpqsRestrictions, dwControlFlags, lphLookup); if (!lpqsRestrictions) { FIXME("lpqsRestrictions == NULL\n"); } else { FIXME("Restrictions->size: %d\n", lpqsRestrictions->dwSize); FIXME("Restrictions->lpszServiceInstanceName: %s\n", lpqsRestrictions->lpszServiceInstanceName); FIXME("Restrictions->lpServiceClassId: %p\n", lpqsRestrictions->lpServiceClassId); FIXME("Restrictions->lpVersion: %p\n", lpqsRestrictions->lpVersion); FIXME("Restrictions->lpszComment: %s\n", lpqsRestrictions->lpszComment); FIXME("Restrictions->dwNameSpace: %d\n", lpqsRestrictions->dwNameSpace); FIXME("Restrictions->lpNSProviderId: %p\n", lpqsRestrictions->lpNSProviderId); FIXME("Restrictions->lpszContext: %s\n", lpqsRestrictions->lpszContext); FIXME("Restrictions->dwNumberOfProtocols: %d\n", lpqsRestrictions->dwNumberOfProtocols); FIXME("Restrictions->lpafpProtocols: %p\n", lpqsRestrictions->lpafpProtocols); FIXME("Restrictions->lpszQueryString: %s\n", lpqsRestrictions->lpszQueryString); FIXME("Restrictions->dwNumberOfCsAddrs: %d\n", lpqsRestrictions->dwNumberOfCsAddrs); FIXME("Restrictions->lpcsaBuffer: %p\n", lpqsRestrictions->lpcsaBuffer); FIXME("Restrictions->dwOutputFlags: %04x\n", lpqsRestrictions->dwOutputFlags); FIXME("Restrictions->lpBlob: %p\n", lpqsRestrictions->lpBlob); }
SetLastError(WSASERVICE_NOT_FOUND); return SOCKET_ERROR; }