Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
90a1a781
Commit
90a1a781
authored
Apr 18, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused data fields in the LANG_FIND_DATA structure.
parent
0a9f98b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
locale.c
dlls/kernel/locale.c
+0
-4
No files found.
dlls/kernel/locale.c
View file @
90a1a781
...
...
@@ -130,8 +130,6 @@ typedef struct {
WCHAR
lang
[
128
];
WCHAR
country
[
4
];
LANGID
found_lang_id
[
NLS_MAX_LANGUAGES
];
WCHAR
found_language
[
NLS_MAX_LANGUAGES
][
3
];
WCHAR
found_country
[
NLS_MAX_LANGUAGES
][
3
];
int
n_found
;
}
LANG_FIND_DATA
;
...
...
@@ -395,8 +393,6 @@ static BOOL CALLBACK find_language_id_proc( HMODULE hModule, LPCWSTR type,
found:
l_data
->
found_lang_id
[
l_data
->
n_found
]
=
LangID
;
strncpyW
(
l_data
->
found_country
[
l_data
->
n_found
],
buf_country
,
3
);
strncpyW
(
l_data
->
found_language
[
l_data
->
n_found
],
buf_language
,
3
);
l_data
->
n_found
++
;
TRACE
(
"Found id %04X for lang %s
\n
"
,
LangID
,
debugstr_w
(
l_data
->
lang
));
return
(
l_data
->
n_found
<
NLS_MAX_LANGUAGES
);
/* continue search, unless we have enough */
...
...
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