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
ba01d15b
Commit
ba01d15b
authored
Jan 06, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Change mapi.h to use ULONG for Win64 compatibility.
parent
54b6a42a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sendmail.c
dlls/mapi32/sendmail.c
+1
-1
mapi.h
include/mapi.h
+3
-3
No files found.
dlls/mapi32/sendmail.c
View file @
ba01d15b
...
...
@@ -71,7 +71,7 @@ ULONG WINAPI MAPISendMail( LHANDLE session, ULONG_PTR uiparam,
HRESULT
res
;
DWORD
size
;
TRACE
(
"(0x%08
lx 0x%08lx %p 0x%08l
x 0x%08x)
\n
"
,
session
,
uiparam
,
TRACE
(
"(0x%08
x 0x%08lx %p 0x%08
x 0x%08x)
\n
"
,
session
,
uiparam
,
message
,
flags
,
reserved
);
if
(
!
message
)
return
MAPI_E_FAILURE
;
...
...
include/mapi.h
View file @
ba01d15b
...
...
@@ -27,15 +27,15 @@ extern "C" {
#ifndef __LHANDLE
#define __LHANDLE
typedef
unsigned
long
LHANDLE
,
*
LPLHANDLE
;
typedef
ULONG
LHANDLE
,
*
LPLHANDLE
;
#endif
#define lhSessionNull ((LHANDLE)0)
#ifndef WINE_FLAGS_DEFINED
#define WINE_FLAGS_DEFINED
typedef
unsigned
long
FLAGS
;
typedef
ULONG
FLAGS
;
#endif
typedef
unsigned
long
*
LPULONG
;
typedef
ULONG
*
LPULONG
;
typedef
struct
{
...
...
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