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
b21b9c73
Commit
b21b9c73
authored
Feb 12, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Feb 13, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Stub for MimeOleGetCharsetInfo.
parent
43958866
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
inetcomm.spec
dlls/inetcomm/inetcomm.spec
+1
-1
mimeole.c
dlls/inetcomm/mimeole.c
+7
-0
mimeole.c
dlls/inetcomm/tests/mimeole.c
+4
-0
No files found.
dlls/inetcomm/inetcomm.spec
View file @
b21b9c73
...
@@ -67,7 +67,7 @@
...
@@ -67,7 +67,7 @@
@ stub MimeOleGetBodyPropA
@ stub MimeOleGetBodyPropA
@ stub MimeOleGetBodyPropW
@ stub MimeOleGetBodyPropW
@ stub MimeOleGetCertsFromThumbprints
@ stub MimeOleGetCertsFromThumbprints
@ st
ub MimeOleGetCharsetInfo
@ st
dcall MimeOleGetCharsetInfo(ptr ptr)
@ stub MimeOleGetCodePageCharset
@ stub MimeOleGetCodePageCharset
@ stub MimeOleGetCodePageInfo
@ stub MimeOleGetCodePageInfo
@ stub MimeOleGetContentTypeExt
@ stub MimeOleGetContentTypeExt
...
...
dlls/inetcomm/mimeole.c
View file @
b21b9c73
...
@@ -2888,3 +2888,10 @@ HRESULT WINAPI MimeOleGetAllocator(IMimeAllocator **alloc)
...
@@ -2888,3 +2888,10 @@ HRESULT WINAPI MimeOleGetAllocator(IMimeAllocator **alloc)
{
{
return
MimeAllocator_create
(
NULL
,
(
void
**
)
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
;
}
dlls/inetcomm/tests/mimeole.c
View file @
b21b9c73
...
@@ -216,6 +216,8 @@ static void test_CreateMessage(void)
...
@@ -216,6 +216,8 @@ static void test_CreateMessage(void)
ULONG
count
;
ULONG
count
;
FINDBODY
find_struct
;
FINDBODY
find_struct
;
HCHARSET
hcs
;
HCHARSET
hcs
;
INETCSETINFO
csi
;
char
text
[]
=
"text"
;
char
text
[]
=
"text"
;
HBODY
*
body_list
;
HBODY
*
body_list
;
PROPVARIANT
prop
;
PROPVARIANT
prop
;
...
@@ -308,6 +310,8 @@ static void test_CreateMessage(void)
...
@@ -308,6 +310,8 @@ static void test_CreateMessage(void)
hr
=
IMimeMessage_GetCharset
(
body
,
&
hcs
);
hr
=
IMimeMessage_GetCharset
(
body
,
&
hcs
);
ok
(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok
(
hcs
==
NULL
,
"ret %p
\n
"
,
hcs
);
ok
(
hcs
==
NULL
,
"ret %p
\n
"
,
hcs
);
hr
=
MimeOleGetCharsetInfo
(
hcs
,
&
csi
);
ok
(
hr
==
E_INVALIDARG
,
"ret %08x
\n
"
,
hr
);
IMimeMessage_Release
(
msg
);
IMimeMessage_Release
(
msg
);
...
...
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