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
bba33e53
Commit
bba33e53
authored
Dec 03, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Get rid of __wine_init_codepages().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3ebe4475
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
locale.c
dlls/kernel32/locale.c
+0
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+0
-1
rtlstr.c
dlls/ntdll/rtlstr.c
+0
-9
No files found.
dlls/kernel32/locale.c
View file @
bba33e53
...
...
@@ -2314,7 +2314,6 @@ INT WINAPI CompareStringA(LCID lcid, DWORD flags,
*/
void
LOCALE_Init
(
void
)
{
extern
void
CDECL
__wine_init_codepages
(
const
union
cptable
*
ansi_cp
,
const
union
cptable
*
oem_cp
);
extern
UINT
CDECL
__wine_get_unix_codepage
(
void
);
UINT
ansi_cp
=
1252
,
oem_cp
=
437
,
mac_cp
=
10000
,
unix_cp
;
...
...
@@ -2332,7 +2331,6 @@ void LOCALE_Init(void)
if
(
!
(
mac_cptable
=
wine_cp_get_table
(
mac_cp
)))
mac_cptable
=
wine_cp_get_table
(
10000
);
__wine_init_codepages
(
ansi_cptable
,
oem_cptable
);
unix_cp
=
__wine_get_unix_codepage
();
if
(
unix_cp
!=
CP_UTF8
)
unix_cptable
=
wine_cp_get_table
(
unix_cp
);
...
...
dlls/ntdll/ntdll.spec
View file @
bba33e53
...
...
@@ -1567,7 +1567,6 @@
@ cdecl wine_get_host_version(ptr ptr) NTDLL_wine_get_host_version
# Codepages
@ cdecl __wine_init_codepages(ptr ptr)
@ cdecl __wine_get_unix_codepage()
# signal handling
...
...
dlls/ntdll/rtlstr.c
View file @
bba33e53
...
...
@@ -42,15 +42,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
/**************************************************************************
* __wine_init_codepages (NTDLL.@)
*
* Set the code page once kernel32 is loaded. Should be done differently.
*/
void
CDECL
__wine_init_codepages
(
const
union
cptable
*
ansi
,
const
union
cptable
*
oem
)
{
}
/**************************************************************************
* RtlInitAnsiString (NTDLL.@)
*
* Initializes a buffered ansi string.
...
...
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