tdh: Stub TdhLoadManifest.

Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Vincent Povirk 2017-11-08 16:11:02 -06:00 committed by Alexandre Julliard
parent 97c925957c
commit a46411499e
2 changed files with 10 additions and 1 deletions

View file

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

View file

@ -20,8 +20,11 @@
#include <stdarg.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(tdh);
@ -41,3 +44,9 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void *reserved)
return TRUE;
}
ULONG WINAPI TdhLoadManifest(LPWSTR manifest)
{
FIXME("(%s): stub\n", debugstr_w(manifest));
return STATUS_SUCCESS;
}