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
4275a093
Commit
4275a093
authored
Jan 20, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Implement IMultiLanguage::GetCodePageInfo.
parent
97b122c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
mlang.c
dlls/mlang/mlang.c
+18
-2
No files found.
dlls/mlang/mlang.c
View file @
4275a093
...
...
@@ -1497,8 +1497,24 @@ static HRESULT WINAPI fnIMultiLanguage_GetCodePageInfo(
UINT
uiCodePage
,
PMIMECPINFO
pCodePageInfo
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
UINT
i
,
n
;
ICOM_THIS_MULTI
(
MLang_impl
,
vtbl_IMultiLanguage
,
iface
);
TRACE
(
"%p, %u, %p
\n
"
,
This
,
uiCodePage
,
pCodePageInfo
);
for
(
i
=
0
;
i
<
sizeof
(
mlang_data
)
/
sizeof
(
mlang_data
[
0
]);
i
++
)
{
for
(
n
=
0
;
n
<
mlang_data
[
i
].
number_of_cp
;
n
++
)
{
if
(
mlang_data
[
i
].
mime_cp_info
[
n
].
cp
==
uiCodePage
)
{
fill_cp_info
(
&
mlang_data
[
i
],
n
,
pCodePageInfo
);
return
S_OK
;
}
}
}
return
S_FALSE
;
}
static
HRESULT
WINAPI
fnIMultiLanguage_GetFamilyCodePage
(
...
...
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