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
8a87aaa9
Commit
8a87aaa9
authored
Dec 27, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Generate the __wine_call_from_32_regs function along with the 16-bit kernel routines.
parent
3ece9e90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+0
-1
relay.c
tools/winebuild/relay.c
+6
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
8a87aaa9
...
@@ -1370,7 +1370,6 @@
...
@@ -1370,7 +1370,6 @@
# or 'wine_' (for user-visible functions) to avoid namespace conflicts.
# or 'wine_' (for user-visible functions) to avoid namespace conflicts.
# Relays
# Relays
@ cdecl -norelay -i386 __wine_call_from_32_regs()
@ cdecl -i386 __wine_enter_vm86(ptr)
@ cdecl -i386 __wine_enter_vm86(ptr)
# Server interface
# Server interface
...
...
tools/winebuild/relay.c
View file @
8a87aaa9
...
@@ -975,6 +975,12 @@ void BuildRelays16(void)
...
@@ -975,6 +975,12 @@ void BuildRelays16(void)
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_DataSelector"
)
);
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_DataSelector"
)
);
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_TebSelector"
)
);
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_TebSelector"
)
);
if
(
UsePIC
)
output
(
"wine_ldt_copy_ptr:
\t
.long %s
\n
"
,
asm_name
(
"wine_ldt_copy"
)
);
if
(
UsePIC
)
output
(
"wine_ldt_copy_ptr:
\t
.long %s
\n
"
,
asm_name
(
"wine_ldt_copy"
)
);
output
(
"
\t
.text
\n
"
);
output
(
"%s:
\n\n
"
,
asm_name
(
"__wine_spec_thunk_text_32"
)
);
BuildCallFrom32Regs
();
output_function_size
(
"__wine_spec_thunk_text_32"
);
output_gnu_stack_note
();
output_gnu_stack_note
();
}
}
...
...
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