Module: wine Branch: master Commit: a46411499e9151d03756d079e9f0e886825ce3bb URL: http://source.winehq.org/git/wine.git/?a=commit;h=a46411499e9151d03756d079e9...
Author: Vincent Povirk vincent@codeweavers.com Date: Wed Nov 8 16:11:02 2017 -0600
tdh: Stub TdhLoadManifest.
Signed-off-by: Vincent Povirk vincent@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/tdh/tdh.spec | 2 +- dlls/tdh/tdh_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/tdh/tdh.spec b/dlls/tdh/tdh.spec index 8702802..0e7c5a5 100644 --- a/dlls/tdh/tdh.spec +++ b/dlls/tdh/tdh.spec @@ -21,7 +21,7 @@ @ stub TdhGetPropertySize @ stub TdhGetWppMessage @ stub TdhGetWppProperty -@ stub TdhLoadManifest +@ stdcall TdhLoadManifest(wstr) @ stub TdhLoadManifestFromBinary @ stub TdhOpenDecodingHandle @ stub TdhQueryProviderFieldInformation diff --git a/dlls/tdh/tdh_main.c b/dlls/tdh/tdh_main.c index 5e10487..c1885f8 100644 --- a/dlls/tdh/tdh_main.c +++ b/dlls/tdh/tdh_main.c @@ -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; +}