Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
3742d77f
Commit
3742d77f
authored
25 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Fixes for non-i386 compiling.
parent
1ed4ecff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/wine/exception.h
+2
-2
2 additions, 2 deletions
include/wine/exception.h
relay32/relay386.c
+1
-1
1 addition, 1 deletion
relay32/relay386.c
relay32/snoop.c
+7
-2
7 additions, 2 deletions
relay32/snoop.c
with
10 additions
and
5 deletions
include/wine/exception.h
+
2
−
2
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
}
...
...
This diff is collapsed.
Click to expand it.
relay32/relay386.c
+
1
−
1
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__ */
This diff is collapsed.
Click to expand it.
relay32/snoop.c
+
7
−
2
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__ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment