Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2520a363
Commit
2520a363
authored
Mar 09, 2011
by
Austin English
Committed by
Alexandre Julliard
Mar 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Avoid shadowing a parameter.
parent
249f4562
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sendmail.c
dlls/mapi32/sendmail.c
+3
-3
No files found.
dlls/mapi32/sendmail.c
View file @
2520a363
...
...
@@ -298,7 +298,7 @@ static ULONG sendmail_extended_mapi(LHANDLE mapi_session, ULONG_PTR uiparam, lpM
if
(
IMAPISession_PrepareForm
(
session
,
NULL
,
msg
,
&
token
)
==
S_OK
)
{
ULONG
access
=
0
,
status
=
0
,
flags
=
0
,
pc
=
0
;
ULONG
access
=
0
,
status
=
0
,
message_
flags
=
0
,
pc
=
0
;
ULONG
pT
[
2
]
=
{
1
,
PR_MSG_STATUS
};
/* Retrieve message status, flags, access rights and class */
...
...
@@ -313,7 +313,7 @@ static ULONG sendmail_extended_mapi(LHANDLE mapi_session, ULONG_PTR uiparam, lpM
if
(
IMessage_GetProps
(
msg
,
(
LPSPropTagArray
)
pT
,
0
,
&
pc
,
&
props
)
==
S_OK
)
{
flags
=
props
->
Value
.
ul
;
message_
flags
=
props
->
Value
.
ul
;
MAPIFreeBuffer
(
props
);
}
...
...
@@ -332,7 +332,7 @@ static ULONG sendmail_extended_mapi(LHANDLE mapi_session, ULONG_PTR uiparam, lpM
/* Show the message form (edit window) */
ret
=
IMAPISession_ShowForm
(
session
,
0
,
msg_store
,
draft_folder
,
NULL
,
token
,
NULL
,
0
,
status
,
flags
,
access
,
token
,
NULL
,
0
,
status
,
message_
flags
,
access
,
props
->
Value
.
lpszA
);
switch
(
ret
)
...
...
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