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
d1682984
Commit
d1682984
authored
Mar 27, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a few missing __ASM_NAME macros.
parent
7c112c91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
relay.c
tools/winebuild/relay.c
+6
-6
No files found.
tools/winebuild/relay.c
View file @
d1682984
...
...
@@ -1069,12 +1069,12 @@ void BuildPendingEventCheck( FILE *outfile )
fprintf
(
outfile
,
"
\t
.byte 0x64
\n\t
testl $0xffffffff,(%d)
\n
"
,
STRUCTOFFSET
(
TEB
,
vm86_pending
)
);
fprintf
(
outfile
,
"
\t
je
DPMI_PendingEventCheck_Cleanup
\n
"
);
fprintf
(
outfile
,
"
\t
je
"
__ASM_NAME
(
"DPMI_PendingEventCheck_Cleanup"
)
"
\n
"
);
fprintf
(
outfile
,
"
\t
.byte 0x64
\n\t
testl $0xffffffff,(%d)
\n
"
,
STRUCTOFFSET
(
TEB
,
dpmi_vif
)
);
fprintf
(
outfile
,
"
\t
je
DPMI_PendingEventCheck_Cleanup
\n
"
);
fprintf
(
outfile
,
"
\t
je
"
__ASM_NAME
(
"DPMI_PendingEventCheck_Cleanup"
)
"
\n
"
);
/* Process pending events. */
...
...
@@ -1082,14 +1082,14 @@ void BuildPendingEventCheck( FILE *outfile )
/* Start cleanup. Restore fs register. */
fprintf
(
outfile
,
".globl
DPMI_PendingEventCheck_Cleanup
\n
"
);
fprintf
(
outfile
,
"DPMI_PendingEventCheck_Cleanup
:
\n
"
);
fprintf
(
outfile
,
".globl
"
__ASM_NAME
(
"DPMI_PendingEventCheck_Cleanup"
)
"
\n
"
);
fprintf
(
outfile
,
__ASM_NAME
(
"DPMI_PendingEventCheck_Cleanup"
)
"
:
\n
"
);
fprintf
(
outfile
,
"
\t
popw %%fs
\n
"
);
/* Return from function. */
fprintf
(
outfile
,
".globl
DPMI_PendingEventCheck_Return
\n
"
);
fprintf
(
outfile
,
"DPMI_PendingEventCheck_Return
:
\n
"
);
fprintf
(
outfile
,
".globl
"
__ASM_NAME
(
"DPMI_PendingEventCheck_Return"
)
"
\n
"
);
fprintf
(
outfile
,
__ASM_NAME
(
"DPMI_PendingEventCheck_Return"
)
"
:
\n
"
);
fprintf
(
outfile
,
"
\t
iret
\n
"
);
}
...
...
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