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:
parent
4705790ee3
commit
bdf3307a15
|
@ -22,7 +22,7 @@
|
|||
@ stub TdhGetWppMessage
|
||||
@ stub TdhGetWppProperty
|
||||
@ stdcall TdhLoadManifest(wstr)
|
||||
@ stub TdhLoadManifestFromBinary
|
||||
@ stdcall TdhLoadManifestFromBinary(wstr)
|
||||
@ stub TdhOpenDecodingHandle
|
||||
@ stub TdhQueryProviderFieldInformation
|
||||
@ stub TdhQueryRemoteWBEMProviderFieldInformation
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue