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
1b8e99f5
Commit
1b8e99f5
authored
Sep 22, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Sep 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Start of IMimeMessage_SetOption.
parent
d042d5ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
mimeole.c
dlls/inetcomm/mimeole.c
+24
-2
No files found.
dlls/inetcomm/mimeole.c
View file @
1b8e99f5
...
...
@@ -2172,8 +2172,30 @@ static HRESULT WINAPI MimeMessage_SetOption(
const
TYPEDID
oid
,
LPCPROPVARIANT
pValue
)
{
FIXME
(
"(%p)->(%08x, %p)
\n
"
,
iface
,
oid
,
pValue
);
return
E_NOTIMPL
;
HRESULT
hr
=
E_NOTIMPL
;
TRACE
(
"(%p)->(%08x, %p)
\n
"
,
iface
,
oid
,
pValue
);
if
(
pValue
->
vt
!=
TYPEDID_TYPE
(
oid
))
{
WARN
(
"Called with vartype %04x and oid %08x
\n
"
,
pValue
->
vt
,
oid
);
return
E_INVALIDARG
;
}
switch
(
oid
)
{
case
OID_HIDE_TNEF_ATTACHMENTS
:
FIXME
(
"OID_HIDE_TNEF_ATTACHMENTS (value %d): ignoring
\n
"
,
pValue
->
u
.
boolVal
);
hr
=
S_OK
;
break
;
case
OID_SHOW_MACBINARY
:
FIXME
(
"OID_SHOW_MACBINARY (value %d): ignoring
\n
"
,
pValue
->
u
.
boolVal
);
hr
=
S_OK
;
break
;
default:
FIXME
(
"Unhandled oid %08x
\n
"
,
oid
);
}
return
hr
;
}
static
HRESULT
WINAPI
MimeMessage_GetOption
(
...
...
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