Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a4641149
Commit
a4641149
authored
Nov 08, 2017
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tdh: Stub TdhLoadManifest.
Signed-off-by:
Vincent Povirk
<
vincent@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
97c92595
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
tdh.spec
dlls/tdh/tdh.spec
+1
-1
tdh_main.c
dlls/tdh/tdh_main.c
+9
-0
No files found.
dlls/tdh/tdh.spec
View file @
a4641149
...
...
@@ -21,7 +21,7 @@
@ stub TdhGetPropertySize
@ stub TdhGetWppMessage
@ stub TdhGetWppProperty
@ st
ub TdhLoadManifest
@ st
dcall TdhLoadManifest(wstr)
@ stub TdhLoadManifestFromBinary
@ stub TdhOpenDecodingHandle
@ stub TdhQueryProviderFieldInformation
...
...
dlls/tdh/tdh_main.c
View file @
a4641149
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment