Commit bbb28c93 authored by Daniel Tang's avatar Daniel Tang Committed by Alexandre Julliard

windows.networking: Stub DllGetActivationFactory().

parent ce18bd4d
MODULE = windows.networking.dll
IMPORTS = combase
C_SRCS = \
main.c
......@@ -18,12 +18,31 @@
#include <windef.h>
#include <winnt.h>
#include <winstring.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(winsock);
static const char *debugstr_hstring(HSTRING hstr)
{
const WCHAR *str;
UINT32 len;
if (hstr && !((ULONG_PTR)hstr >> 16)) return "(invalid)";
str = WindowsGetStringRawBuffer(hstr, &len);
return wine_dbgstr_wn(str, len);
}
HRESULT WINAPI SetSocketMediaStreamingMode(BOOL value)
{
FIXME("value %d stub!\n", value);
return S_OK;
}
HRESULT WINAPI DllGetActivationFactory(HSTRING classid, void **factory)
{
FIXME("class %s, factory %p.\n", debugstr_hstring(classid), factory);
*factory = NULL;
return CLASS_E_CLASSNOTAVAILABLE;
}
1 stub @
@ stdcall -private DllCanUnloadNow()
@ stub DllGetActivationFactory
@ stdcall -private DllGetActivationFactory(ptr ptr)
@ stub DllGetClassObject
@ stdcall -private DllMain(long long ptr)
@ stdcall -private DllRegisterServer()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment