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 TdhGetPropertySize
@ stub TdhGetWppMessage @ stub TdhGetWppMessage
@ stub TdhGetWppProperty @ stub TdhGetWppProperty
@ stub TdhLoadManifest @ stdcall TdhLoadManifest(wstr)
@ stub TdhLoadManifestFromBinary @ stub TdhLoadManifestFromBinary
@ stub TdhOpenDecodingHandle @ stub TdhOpenDecodingHandle
@ stub TdhQueryProviderFieldInformation @ stub TdhQueryProviderFieldInformation

View file

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