tdh: Stub TdhLoadManifest.
Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
97c925957c
commit
a46411499e
|
@ -21,7 +21,7 @@
|
|||
@ stub TdhGetPropertySize
|
||||
@ stub TdhGetWppMessage
|
||||
@ stub TdhGetWppProperty
|
||||
@ stub TdhLoadManifest
|
||||
@ stdcall TdhLoadManifest(wstr)
|
||||
@ stub TdhLoadManifestFromBinary
|
||||
@ stub TdhOpenDecodingHandle
|
||||
@ stub TdhQueryProviderFieldInformation
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue