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
bdc9440d
Commit
bdc9440d
authored
Sep 16, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Sep 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Implement MimeOleGetCharsetInfo.
parent
5497ff01
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
mimeintl.c
dlls/inetcomm/mimeintl.c
+16
-0
mimeole.c
dlls/inetcomm/mimeole.c
+0
-7
No files found.
dlls/inetcomm/mimeintl.c
View file @
bdc9440d
...
...
@@ -546,3 +546,19 @@ HRESULT WINAPI MimeOleGetInternat(IMimeInternational **internat)
IMimeInternational_AddRef
(
*
internat
);
return
S_OK
;
}
HRESULT
WINAPI
MimeOleGetCharsetInfo
(
HCHARSET
hCharset
,
LPINETCSETINFO
pCsetInfo
)
{
IMimeInternational
*
internat
;
HRESULT
hr
;
TRACE
(
"(%p, %p)
\n
"
,
hCharset
,
pCsetInfo
);
hr
=
MimeOleGetInternat
(
&
internat
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
IMimeInternational_GetCharsetInfo
(
internat
,
hCharset
,
pCsetInfo
);
IMimeInternational_Release
(
internat
);
}
return
S_OK
;
}
dlls/inetcomm/mimeole.c
View file @
bdc9440d
...
...
@@ -2930,10 +2930,3 @@ HRESULT WINAPI MimeOleGetAllocator(IMimeAllocator **alloc)
{
return
MimeAllocator_create
(
NULL
,
(
void
**
)
alloc
);
}
HRESULT
WINAPI
MimeOleGetCharsetInfo
(
HCHARSET
hCharset
,
LPINETCSETINFO
pCsetInfo
)
{
FIXME
(
"(%p, %p)
\n
"
,
hCharset
,
pCsetInfo
);
if
(
!
hCharset
)
return
E_INVALIDARG
;
return
E_FAIL
;
}
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