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
98d7f90d
Commit
98d7f90d
authored
Sep 25, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Get rid of obsolete 16-bit relay functions.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4b96d1c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
29 deletions
+0
-29
kernel32.spec
dlls/kernel32/kernel32.spec
+0
-5
module.c
dlls/kernel32/module.c
+0
-24
No files found.
dlls/kernel32/kernel32.spec
View file @
98d7f90d
...
...
@@ -1685,11 +1685,6 @@
# All functions must be prefixed with '__wine_' (for internal functions)
# or 'wine_' (for user-visible functions) to avoid namespace conflicts.
# 16-bit relays (for backwards compatibility)
@ cdecl -i386 -private __wine_dll_register_16(ptr str)
@ cdecl -i386 -private __wine_dll_unregister_16(ptr)
@ stub -i386 __wine_call_from_16_regs
# Unix files
@ cdecl wine_get_unix_file_name(wstr)
@ cdecl wine_get_dos_file_name(str)
dlls/kernel32/module.c
View file @
98d7f90d
...
...
@@ -357,27 +357,3 @@ FARPROC WINAPI GetProcAddress( HMODULE hModule, LPCSTR function )
{
return
get_proc_address_wrapper
(
hModule
,
function
);
}
#ifdef __i386__
/***********************************************************************
* __wine_dll_register_16 (KERNEL32.@)
*
* No longer used.
*/
void
__wine_dll_register_16
(
const
IMAGE_DOS_HEADER
*
header
,
const
char
*
file_name
)
{
ERR
(
"loading old style 16-bit dll %s no longer supported
\n
"
,
file_name
);
}
/***********************************************************************
* __wine_dll_unregister_16 (KERNEL32.@)
*
* No longer used.
*/
void
__wine_dll_unregister_16
(
const
IMAGE_DOS_HEADER
*
header
)
{
}
#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