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
3fed8787
Commit
3fed8787
authored
Jun 06, 2019
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add SymGetExtendedOption/SymSetExtendedOption stubs.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7c29fe24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
0 deletions
+30
-0
dbghelp.c
dlls/dbghelp/dbghelp.c
+20
-0
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+2
-0
dbghelp.h
include/dbghelp.h
+8
-0
No files found.
dlls/dbghelp/dbghelp.c
View file @
3fed8787
...
...
@@ -452,6 +452,26 @@ DWORD WINAPI SymGetOptions(void)
}
/******************************************************************
* SymSetExtendedOption (DBGHELP.@)
*
*/
BOOL
WINAPI
SymSetExtendedOption
(
IMAGEHLP_EXTENDED_OPTIONS
option
,
BOOL
value
)
{
FIXME
(
"%d, %d
\n
"
,
option
,
value
);
return
FALSE
;
}
/******************************************************************
* SymGetExtendedOption (DBGHELP.@)
*
*/
BOOL
WINAPI
SymGetExtendedOption
(
IMAGEHLP_EXTENDED_OPTIONS
option
)
{
FIXME
(
"%d
\n
"
,
option
);
return
FALSE
;
}
/******************************************************************
* SymSetParentWindow (DBGHELP.@)
*
*/
...
...
dlls/dbghelp/dbghelp.spec
View file @
3fed8787
...
...
@@ -83,6 +83,7 @@
@ stub SymGetFileLineOffsets64
@ stub SymGetHomeDirectory
@ stub SymGetHomeDirectoryW
@ stdcall SymGetExtendedOption(long)
@ stdcall SymGetLineFromAddr(long long ptr ptr)
@ stdcall SymGetLineFromAddr64(long int64 ptr ptr)
@ stdcall SymGetLineFromAddrW64(long int64 ptr ptr)
...
...
@@ -153,6 +154,7 @@
@ stdcall SymSearch(long int64 long long str int64 ptr ptr long)
@ stdcall SymSearchW(long int64 long long wstr int64 ptr ptr long)
@ stdcall SymSetContext(long ptr ptr)
@ stdcall SymSetExtendedOption(long long)
@ stdcall SymSetHomeDirectory(long str)
@ stdcall SymSetHomeDirectoryW(long wstr)
@ stdcall SymSetOptions(long)
...
...
include/dbghelp.h
View file @
3fed8787
...
...
@@ -1424,6 +1424,11 @@ typedef struct _IMAGE_DEBUG_INFORMATION
DWORD
Reserved
[
2
];
}
IMAGE_DEBUG_INFORMATION
,
*
PIMAGE_DEBUG_INFORMATION
;
typedef
enum
{
SYMOPT_EX_DISABLEACCESSTIMEUPDATE
,
SYMOPT_EX_MAX
}
IMAGEHLP_EXTENDED_OPTIONS
;
PIMAGE_DEBUG_INFORMATION
WINAPI
MapDebugInformation
(
HANDLE
,
PCSTR
,
PCSTR
,
ULONG
);
...
...
@@ -1432,6 +1437,9 @@ BOOL WINAPI UnmapDebugInformation(PIMAGE_DEBUG_INFORMATION);
DWORD
WINAPI
SymGetOptions
(
void
);
DWORD
WINAPI
SymSetOptions
(
DWORD
);
BOOL
WINAPI
SymGetExtendedOption
(
IMAGEHLP_EXTENDED_OPTIONS
option
);
BOOL
WINAPI
SymSetExtendedOption
(
IMAGEHLP_EXTENDED_OPTIONS
option
,
BOOL
value
);
BOOL
WINAPI
SymSetParentWindow
(
HWND
);
/*************************
...
...
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