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
d43e1b24
Commit
d43e1b24
authored
Apr 17, 2004
by
Emmanuel Maillard
Committed by
Alexandre Julliard
Apr 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a compile error on non-i386.
parent
11af6165
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
stack.c
dlls/dbghelp/stack.c
+8
-0
No files found.
dlls/dbghelp/stack.c
View file @
d43e1b24
...
...
@@ -76,6 +76,7 @@ BOOL WINAPI StackWalk(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
PGET_MODULE_BASE_ROUTINE
GetModuleBaseRoutine
,
PTRANSLATE_ADDRESS_ROUTINE
f_xlat_adr
)
{
#ifdef __i386__
CONTEXT
*
ctx
=
(
CONTEXT
*
)
_ctx
;
STACK32FRAME
frame32
;
STACK16FRAME
frame16
;
...
...
@@ -392,4 +393,11 @@ BOOL WINAPI StackWalk(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
done_err:
curr_mode
=
stm_done
;
return
FALSE
;
#else
/* __i386__ */
FIXME
(
"(%ld, %p, %p, %p, %p, %p, %p, %p, %p): stub
\n
"
,
MachineType
,
hProcess
,
hThread
,
frame
,
_ctx
,
f_read_mem
,
FunctionTableAccessRoutine
,
GetModuleBaseRoutine
,
f_xlat_adr
);
return
FALSE
;
#endif
}
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