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
25595a0a
Commit
25595a0a
authored
Apr 07, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Reimplement Internal_EnumTimeFormats() using the locale.nls data.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8576c3e1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
20 deletions
+31
-20
locale.c
dlls/kernel32/locale.c
+4
-3
locale.c
dlls/kernelbase/locale.c
+27
-17
No files found.
dlls/kernel32/locale.c
View file @
25595a0a
...
...
@@ -55,8 +55,8 @@ extern BOOL WINAPI Internal_EnumLanguageGroupLocales( LANGGROUPLOCALE_ENUMPROCW
extern
BOOL
WINAPI
Internal_EnumSystemCodePages
(
CODEPAGE_ENUMPROCW
proc
,
DWORD
flags
,
BOOL
unicode
);
extern
BOOL
WINAPI
Internal_EnumSystemLanguageGroups
(
LANGUAGEGROUP_ENUMPROCW
proc
,
DWORD
flags
,
LONG_PTR
param
,
BOOL
unicode
);
extern
BOOL
WINAPI
Internal_EnumTimeFormats
(
TIMEFMT_ENUMPROCW
proc
,
LCID
lcid
,
DWORD
flags
,
BOOL
unicode
,
BOOL
ex
,
LPARAM
lparam
);
extern
BOOL
WINAPI
Internal_EnumTimeFormats
(
TIMEFMT_ENUMPROCW
proc
,
const
NLS_LOCALE_DATA
*
locale
,
DWORD
flags
,
BOOL
unicode
,
BOOL
ex
,
LPARAM
lparam
);
extern
BOOL
WINAPI
Internal_EnumUILanguages
(
UILANGUAGE_ENUMPROCW
proc
,
DWORD
flags
,
LONG_PTR
param
,
BOOL
unicode
);
...
...
@@ -350,7 +350,8 @@ BOOL WINAPI EnumTimeFormatsA( TIMEFMT_ENUMPROCA proc, LCID lcid, DWORD flags )
SetLastError
(
ERROR_INVALID_FLAGS
);
return
FALSE
;
}
return
Internal_EnumTimeFormats
(
(
TIMEFMT_ENUMPROCW
)
proc
,
lcid
,
flags
,
FALSE
,
FALSE
,
0
);
return
Internal_EnumTimeFormats
(
(
TIMEFMT_ENUMPROCW
)
proc
,
NlsValidateLocale
(
&
lcid
,
0
),
flags
,
FALSE
,
FALSE
,
0
);
}
/******************************************************************************
...
...
dlls/kernelbase/locale.c
View file @
25595a0a
...
...
@@ -3888,14 +3888,16 @@ BOOL WINAPI DECLSPEC_HOTPATCH Internal_EnumSystemLanguageGroups( LANGUAGEGROUP_E
/**************************************************************************
* Internal_EnumTimeFormats (kernelbase.@)
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
Internal_EnumTimeFormats
(
TIMEFMT_ENUMPROCW
proc
,
LCID
lcid
,
DWORD
flags
,
BOOL
WINAPI
DECLSPEC_HOTPATCH
Internal_EnumTimeFormats
(
TIMEFMT_ENUMPROCW
proc
,
const
NLS_LOCALE_DATA
*
locale
,
DWORD
flags
,
BOOL
unicode
,
BOOL
ex
,
LPARAM
lparam
)
{
WCHAR
buffer
[
256
];
LCTYPE
lctype
;
INT
ret
;
INT
ret
=
TRUE
;
const
DWORD
*
array
;
DWORD
pos
,
i
;
if
(
!
proc
)
if
(
!
proc
||
!
locale
)
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
...
...
@@ -3903,10 +3905,12 @@ BOOL WINAPI DECLSPEC_HOTPATCH Internal_EnumTimeFormats( TIMEFMT_ENUMPROCW proc,
switch
(
flags
&
~
LOCALE_USE_CP_ACP
)
{
case
0
:
lctype
=
LOCALE_STIMEFORMAT
;
if
(
!
get_locale_info
(
locale
,
0
,
LOCALE_STIMEFORMAT
,
buffer
,
ARRAY_SIZE
(
buffer
)
))
return
FALSE
;
pos
=
locale
->
stimeformat
;
break
;
case
TIME_NOSECONDS
:
lctype
=
LOCALE_SSHORTTIME
;
if
(
!
get_locale_info
(
locale
,
0
,
LOCALE_SSHORTTIME
,
buffer
,
ARRAY_SIZE
(
buffer
)
))
return
FALSE
;
pos
=
locale
->
sshorttime
;
break
;
default:
FIXME
(
"Unknown time format %lx
\n
"
,
flags
);
...
...
@@ -3914,16 +3918,21 @@ BOOL WINAPI DECLSPEC_HOTPATCH Internal_EnumTimeFormats( TIMEFMT_ENUMPROCW proc,
return
FALSE
;
}
lctype
|=
flags
&
LOCALE_USE_CP_ACP
;
if
(
unicode
)
ret
=
GetLocaleInfoW
(
lcid
,
lctype
,
buffer
,
ARRAY_SIZE
(
buffer
)
);
else
ret
=
GetLocaleInfoA
(
lcid
,
lctype
,
(
char
*
)
buffer
,
sizeof
(
buffer
)
);
array
=
(
const
DWORD
*
)(
locale_strings
+
pos
+
1
)
;
for
(
i
=
0
;
ret
&&
i
<
locale_strings
[
pos
];
i
++
)
{
if
(
i
)
memcpy
(
buffer
,
locale_strings
+
array
[
i
]
+
1
,
(
locale_strings
[
array
[
i
]]
+
1
)
*
sizeof
(
WCHAR
)
);
if
(
ret
)
if
(
ex
)
ret
=
((
TIMEFMT_ENUMPROCEX
)
proc
)(
buffer
,
lparam
);
else
if
(
unicode
)
ret
=
proc
(
buffer
);
else
{
if
(
ex
)
((
TIMEFMT_ENUMPROCEX
)
proc
)(
buffer
,
lparam
);
else
proc
(
buffer
);
char
buffA
[
256
];
WideCharToMultiByte
(
get_locale_codepage
(
locale
,
flags
),
0
,
buffer
,
-
1
,
buffA
,
ARRAY_SIZE
(
buffA
),
NULL
,
NULL
);
ret
=
proc
(
(
WCHAR
*
)
buffA
);
}
}
return
TRUE
;
}
...
...
@@ -4408,7 +4417,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH EnumSystemLocalesEx( LOCALE_ENUMPROCEX proc, DWORD
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
EnumTimeFormatsW
(
TIMEFMT_ENUMPROCW
proc
,
LCID
lcid
,
DWORD
flags
)
{
return
Internal_EnumTimeFormats
(
proc
,
lcid
,
flags
,
TRUE
,
FALSE
,
0
);
return
Internal_EnumTimeFormats
(
proc
,
NlsValidateLocale
(
&
lcid
,
0
)
,
flags
,
TRUE
,
FALSE
,
0
);
}
...
...
@@ -4418,8 +4427,9 @@ BOOL WINAPI DECLSPEC_HOTPATCH EnumTimeFormatsW( TIMEFMT_ENUMPROCW proc, LCID lci
BOOL
WINAPI
DECLSPEC_HOTPATCH
EnumTimeFormatsEx
(
TIMEFMT_ENUMPROCEX
proc
,
const
WCHAR
*
locale
,
DWORD
flags
,
LPARAM
lparam
)
{
LCID
lcid
=
LocaleNameToLCID
(
locale
,
0
);
return
Internal_EnumTimeFormats
(
(
TIMEFMT_ENUMPROCW
)
proc
,
lcid
,
flags
,
TRUE
,
TRUE
,
lparam
);
LCID
lcid
;
return
Internal_EnumTimeFormats
(
(
TIMEFMT_ENUMPROCW
)
proc
,
get_locale_by_name
(
locale
,
&
lcid
),
flags
,
TRUE
,
TRUE
,
lparam
);
}
...
...
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