Commit a4641149 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

tdh: Stub TdhLoadManifest.

parent 97c92595
......@@ -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;
}
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