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
26e06f5b
Commit
26e06f5b
authored
Oct 19, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add stub implementations of SymGetLineFromInlineContext(W).
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9a1a849b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+2
-2
symbol.c
dlls/dbghelp/symbol.c
+24
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
26e06f5b
...
...
@@ -92,8 +92,8 @@
@ stdcall SymGetLineFromAddr(long long ptr ptr)
@ stdcall SymGetLineFromAddr64(long int64 ptr ptr)
@ stdcall SymGetLineFromAddrW64(long int64 ptr ptr)
@ st
ub SymGetLineFromInlineContext
@ st
ub SymGetLineFromInlineContextW
@ st
dcall SymGetLineFromInlineContext(long int64 long int64 ptr ptr)
@ st
dcall SymGetLineFromInlineContextW(long int64 long int64 ptr ptr)
@ stdcall SymGetLineFromName(long str str long ptr ptr)
@ stdcall SymGetLineFromName64(long str str long ptr ptr)
@ stdcall SymGetLineFromNameW64(long wstr wstr long ptr ptr)
...
...
dlls/dbghelp/symbol.c
View file @
26e06f5b
...
...
@@ -2540,3 +2540,27 @@ BOOL WINAPI SymFromInlineContextW(HANDLE hProcess, DWORD64 addr, ULONG inline_ct
HeapFree
(
GetProcessHeap
(),
0
,
si
);
return
ret
;
}
/******************************************************************
* SymGetLineFromInlineContext (DBGHELP.@)
*
*/
BOOL
WINAPI
SymGetLineFromInlineContext
(
HANDLE
hProcess
,
DWORD64
addr
,
ULONG
inline_ctx
,
DWORD64
mod_addr
,
PDWORD
disp
,
PIMAGEHLP_LINE64
line
)
{
FIXME
(
"(%p, %#I64x, 0x%x, %#I64x, %p, %p): stub!
\n
"
,
hProcess
,
addr
,
inline_ctx
,
mod_addr
,
disp
,
line
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/******************************************************************
* SymGetLineFromInlineContextW (DBGHELP.@)
*
*/
BOOL
WINAPI
SymGetLineFromInlineContextW
(
HANDLE
hProcess
,
DWORD64
addr
,
ULONG
inline_ctx
,
DWORD64
mod_addr
,
PDWORD
disp
,
PIMAGEHLP_LINEW64
line
)
{
FIXME
(
"(%p, %#I64x, 0x%x, %#I64x, %p, %p): stub!
\n
"
,
hProcess
,
addr
,
inline_ctx
,
mod_addr
,
disp
,
line
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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