tdh: Add TdhLoadManifestFromBinary stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50725 Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
52183f916c
commit
a9bab3601e
|
@ -22,7 +22,7 @@
|
||||||
@ stub TdhGetWppMessage
|
@ stub TdhGetWppMessage
|
||||||
@ stub TdhGetWppProperty
|
@ stub TdhGetWppProperty
|
||||||
@ stdcall TdhLoadManifest(wstr)
|
@ stdcall TdhLoadManifest(wstr)
|
||||||
@ stub TdhLoadManifestFromBinary
|
@ stdcall TdhLoadManifestFromBinary(wstr)
|
||||||
@ stub TdhOpenDecodingHandle
|
@ stub TdhOpenDecodingHandle
|
||||||
@ stub TdhQueryProviderFieldInformation
|
@ stub TdhQueryProviderFieldInformation
|
||||||
@ stub TdhQueryRemoteWBEMProviderFieldInformation
|
@ stub TdhQueryRemoteWBEMProviderFieldInformation
|
||||||
|
|
|
@ -32,3 +32,9 @@ ULONG WINAPI TdhLoadManifest(LPWSTR manifest)
|
||||||
FIXME("(%s): stub\n", debugstr_w(manifest));
|
FIXME("(%s): stub\n", debugstr_w(manifest));
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ULONG WINAPI TdhLoadManifestFromBinary(LPWSTR binary)
|
||||||
|
{
|
||||||
|
FIXME("(%s): stub\n", debugstr_w(binary));
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue