Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c9973679
Commit
c9973679
authored
Feb 05, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apphelp: Add a stub for SdbGetFirstChild.
parent
5e8b6133
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
apphelp.c
dlls/apphelp/apphelp.c
+10
-0
apphelp.spec
dlls/apphelp/apphelp.spec
+1
-1
No files found.
dlls/apphelp/apphelp.c
View file @
c9973679
...
@@ -34,6 +34,10 @@ typedef enum _PATH_TYPE {
...
@@ -34,6 +34,10 @@ typedef enum _PATH_TYPE {
/* FIXME: don't know where to place that typedef */
/* FIXME: don't know where to place that typedef */
typedef
HANDLE
PDB
;
typedef
HANDLE
PDB
;
typedef
HANDLE
HSDB
;
typedef
HANDLE
HSDB
;
typedef
DWORD
TAGID
;
/* FIXME: don't know where to place that define */
#define TAGID_NULL 0x0
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
{
...
@@ -96,3 +100,9 @@ PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
...
@@ -96,3 +100,9 @@ PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
return
NULL
;
}
}
TAGID
WINAPI
SdbGetFirstChild
(
PDB
pdb
,
TAGID
parent
)
{
FIXME
(
"stub: %p %d
\n
"
,
pdb
,
parent
);
return
TAGID_NULL
;
}
dlls/apphelp/apphelp.spec
View file @
c9973679
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
@ stub SdbGetFileImageType
@ stub SdbGetFileImageType
@ stub SdbGetFileImageTypeEx
@ stub SdbGetFileImageTypeEx
@ stub SdbGetFileInfo
@ stub SdbGetFileInfo
@ st
ub SdbGetFirstChild
@ st
dcall SdbGetFirstChild(ptr long)
@ stub SdbGetIndex
@ stub SdbGetIndex
@ stub SdbGetItemFromItemRef
@ stub SdbGetItemFromItemRef
@ stub SdbGetLayerName
@ stub SdbGetLayerName
...
...
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