Commit a9bab360 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

tdh: Add TdhLoadManifestFromBinary stub.

parent 52183f91
......@@ -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;
}
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