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
68a4da07
Commit
68a4da07
authored
Jul 29, 2005
by
Peter Oberndorfer
Committed by
Alexandre Julliard
Jul 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for SymSetParentWindow.
parent
c2fe2f0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
dbghelp.c
dlls/dbghelp/dbghelp.c
+11
-0
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-0
dbghelp.h
include/dbghelp.h
+2
-0
No files found.
dlls/dbghelp/dbghelp.c
View file @
68a4da07
...
...
@@ -282,6 +282,17 @@ DWORD WINAPI SymGetOptions(void)
}
/******************************************************************
* SymSetParentWindow (DBGHELP.@)
*
*/
BOOL
WINAPI
SymSetParentWindow
(
HWND
hwnd
)
{
/* Save hwnd so it can be used as parent window */
FIXME
(
"(%p): stub
\n
"
,
hwnd
);
return
TRUE
;
}
/******************************************************************
* SymSetContext (DBGHELP.@)
*
*/
...
...
dlls/dbghelp/dbghelp.spec
View file @
68a4da07
...
...
@@ -80,6 +80,7 @@
@ stub SymRegisterFunctionEntryCallback
@ stdcall SymSetContext(long ptr ptr)
@ stdcall SymSetOptions(long)
@ stdcall SymSetParentWindow(long)
@ stdcall SymSetSearchPath(long str)
@ stub SymSetSymWithAddr64
@ stub SymUnDName64
...
...
include/dbghelp.h
View file @
68a4da07
...
...
@@ -887,6 +887,8 @@ BOOL WINAPI UnmapDebugInformation(PIMAGE_DEBUG_INFORMATION);
DWORD
WINAPI
SymGetOptions
(
void
);
DWORD
WINAPI
SymSetOptions
(
DWORD
);
BOOL
WINAPI
SymSetParentWindow
(
HWND
hwnd
);
/* Symbol server bits */
typedef
BOOL
(
WINAPI
*
PSYMBOLSERVERPROC
)(
LPCSTR
,
LPCSTR
,
PVOID
,
DWORD
,
DWORD
,
LPSTR
);
typedef
BOOL
(
WINAPI
*
PSYMBOLSERVEROPENPROC
)(
void
);
...
...
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