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
3742d77f
Commit
3742d77f
authored
Jun 26, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for non-i386 compiling.
parent
1ed4ecff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
exception.h
include/wine/exception.h
+2
-2
relay386.c
relay32/relay386.c
+1
-1
snoop.c
relay32/snoop.c
+7
-2
No files found.
include/wine/exception.h
View file @
3742d77f
...
...
@@ -145,7 +145,7 @@ static inline EXCEPTION_FRAME *EXC_push_frame( EXCEPTION_FRAME *frame )
:
"=&r"
(
prev
)
:
"r"
(
frame
)
:
"memory"
);
return
prev
;
#else
TEB
*
teb
=
CURRENT
();
TEB
*
teb
=
NtCurrentTeb
();
frame
->
Prev
=
teb
->
except
;
teb
->
except
=
frame
;
return
frame
->
Prev
;
...
...
@@ -160,7 +160,7 @@ static inline EXCEPTION_FRAME *EXC_pop_frame( EXCEPTION_FRAME *frame )
return
frame
->
Prev
;
#else
CURRENT
()
->
except
=
frame
->
Prev
;
NtCurrentTeb
()
->
except
=
frame
->
Prev
;
return
frame
->
Prev
;
#endif
}
...
...
relay32/relay386.c
View file @
3742d77f
...
...
@@ -305,6 +305,6 @@ void WINAPI REGS_FUNC(RELAY_CallFrom32Regs)( CONTEXT *context )
#else
/* __i386__ */
REGS_ENTRYPOINT
(
RELAY_CallFrom32Regs
)
{
}
void
WINAPI
REGS_FUNC
(
RELAY_CallFrom32Regs
)(
CONTEXT
*
context
)
{
}
#endif
/* __i386__ */
relay32/snoop.c
View file @
3742d77f
...
...
@@ -373,7 +373,12 @@ FARPROC SNOOP_GetProcAddress(HMODULE hmod,LPCSTR name,DWORD ordinal,FARPROC orig
return
origfun
;
}
REGS_ENTRYPOINT
(
SNOOP_Entry
)
{
}
REGS_ENTRYPOINT
(
SNOOP_Return
)
{
}
void
WINAPI
REGS_FUNC
(
SNOOP_Entry
)(
CONTEXT
*
context
)
{
}
void
WINAPI
REGS_FUNC
(
SNOOP_Return
)(
CONTEXT
*
context
)
{
}
#endif
/* !__i386__ */
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