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>
(cherry picked from commit a9bab3601e)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Austin English 2021-03-04 01:07:38 -06:00 committed by Michael Stefaniuc
parent 4705790ee3
commit bdf3307a15
2 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,7 @@
@ stub TdhGetWppMessage
@ stub TdhGetWppProperty
@ stdcall TdhLoadManifest(wstr)
@ stub TdhLoadManifestFromBinary
@ stdcall TdhLoadManifestFromBinary(wstr)
@ stub TdhOpenDecodingHandle
@ stub TdhQueryProviderFieldInformation
@ stub TdhQueryRemoteWBEMProviderFieldInformation

View File

@ -48,3 +48,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;
}