Owen Rudge orudge@codeweavers.com writes:
diff --git a/dlls/uuid/uuid.c b/dlls/uuid/uuid.c index 913e99c..ac98522 100644 --- a/dlls/uuid/uuid.c +++ b/dlls/uuid/uuid.c @@ -89,6 +89,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0); #include "netcfgx.h" #include "shimgdata.h" #include "comsvcs.h" +#include "wsdapi.h"
I don't see any IWSD interfaces in the PSDK uuid library.
+static HRESULT WINAPI IWSDiscoveryPublisherImpl_Publish(IWSDiscoveryPublisher *This, LPCWSTR pszId, ULONGLONG ullMetadataVersion, ULONGLONG ullInstanceId,
ULONGLONG ullMessageNumber, LPCWSTR pszSessionId, const WSD_NAME_LIST *pTypesList,
const WSD_URI_LIST *pScopesList, const WSD_URI_LIST *pXAddrsList)
+{
- FIXME("(%p, %s, %llu, %llu, %llu, %s, %p, %p, %p)\n", This, debugstr_w(pszId), ullMetadataVersion, ullInstanceId, ullMessageNumber,
debugstr_w(pszSessionId), pTypesList, pScopesList, pXAddrsList);
Please use wine_dbgstr_longlong instead of %ll formats.