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
9896cb4e
Commit
9896cb4e
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 mapix.h to use ULONG for Win64 compatibility.
parent
230fb06d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mapi32_main.c
dlls/mapi32/mapi32_main.c
+2
-2
mapix.h
include/mapix.h
+1
-1
No files found.
dlls/mapi32/mapi32_main.c
View file @
9896cb4e
...
...
@@ -89,7 +89,7 @@ HRESULT WINAPI MAPIInitialize(LPVOID init)
ULONG
WINAPI
MAPILogon
(
ULONG_PTR
uiparam
,
LPSTR
profile
,
LPSTR
password
,
FLAGS
flags
,
ULONG
reserved
,
LPLHANDLE
session
)
{
FIXME
(
"(0x%08lx %s %p 0x%08
l
x 0x%08x %p) Stub
\n
"
,
uiparam
,
FIXME
(
"(0x%08lx %s %p 0x%08x 0x%08x %p) Stub
\n
"
,
uiparam
,
debugstr_a
(
profile
),
password
,
flags
,
reserved
,
session
);
if
(
session
)
*
session
=
1
;
...
...
@@ -99,7 +99,7 @@ ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
ULONG
WINAPI
MAPILogoff
(
LHANDLE
session
,
ULONG_PTR
uiparam
,
FLAGS
flags
,
ULONG
reserved
)
{
FIXME
(
"(0x%08lx 0x%08lx 0x%08
l
x 0x%08x) Stub
\n
"
,
session
,
FIXME
(
"(0x%08lx 0x%08lx 0x%08x 0x%08x) Stub
\n
"
,
session
,
uiparam
,
flags
,
reserved
);
return
SUCCESS_SUCCESS
;
}
...
...
include/mapix.h
View file @
9896cb4e
...
...
@@ -36,7 +36,7 @@ typedef struct IMAPISession *LPMAPISESSION;
#ifndef WINE_FLAGS_DEFINED
#define WINE_FLAGS_DEFINED
typedef
unsigned
long
FLAGS
;
typedef
ULONG
FLAGS
;
#endif
/* Flags for MAPILogon and MAPILogonEx */
...
...
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