Commit ddb0339f authored by Loïc Rebmeister's avatar Loïc Rebmeister Committed by Alexandre Julliard

wintypes: Add RoResolveNamespace stub.

parent 42f9a8ef
......@@ -354,3 +354,18 @@ HRESULT WINAPI DllGetActivationFactory(HSTRING classid, IActivationFactory **fac
IUnknown_AddRef(*factory);
return S_OK;
}
HRESULT WINAPI RoResolveNamespace(HSTRING name, HSTRING windowsMetaDataDir,
DWORD packageGraphDirsCount, const HSTRING *packageGraphDirs,
DWORD *metaDataFilePathsCount, HSTRING **metaDataFilePaths,
DWORD *subNamespacesCount, HSTRING **subNamespaces)
{
FIXME("name %s, windowsMetaDataDir %s, metaDataFilePaths %p, subNamespaces %p stub!\n",
debugstr_hstring(name), debugstr_hstring(windowsMetaDataDir),
metaDataFilePaths, subNamespaces);
if (!metaDataFilePaths && !subNamespaces)
return E_INVALIDARG;
return RO_E_METADATA_NAME_NOT_FOUND;
}
......@@ -8,4 +8,4 @@
@ stub RoIsApiContractMajorVersionPresent
@ stub RoIsApiContractPresent
@ stub RoParseTypeName
@ stub RoResolveNamespace
@ stdcall RoResolveNamespace(ptr ptr long ptr ptr ptr ptr ptr)
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