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 TdhGetWppProperty
|
||||
@ stdcall TdhLoadManifest(wstr)
|
||||
@ stub TdhLoadManifestFromBinary
|
||||
@ stdcall TdhLoadManifestFromBinary(wstr)
|
||||
@ stub TdhOpenDecodingHandle
|
||||
@ stub TdhQueryProviderFieldInformation
|
||||
@ stub TdhQueryRemoteWBEMProviderFieldInformation
|
||||
|
|
|
@ -32,3 +32,9 @@ ULONG WINAPI TdhLoadManifest(LPWSTR manifest)
|
|||
FIXME("(%s): stub\n", debugstr_w(manifest));
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
ULONG WINAPI TdhLoadManifestFromBinary(LPWSTR binary)
|
||||
{
|
||||
FIXME("(%s): stub\n", debugstr_w(binary));
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue