Commit 9896cb4e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

include: Change mapix.h to use ULONG for Win64 compatibility.

parent 230fb06d
...@@ -89,7 +89,7 @@ HRESULT WINAPI MAPIInitialize(LPVOID init) ...@@ -89,7 +89,7 @@ HRESULT WINAPI MAPIInitialize(LPVOID init)
ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password, ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
FLAGS flags, ULONG reserved, LPLHANDLE session) FLAGS flags, ULONG reserved, LPLHANDLE session)
{ {
FIXME("(0x%08lx %s %p 0x%08lx 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); debugstr_a(profile), password, flags, reserved, session);
if (session) *session = 1; if (session) *session = 1;
...@@ -99,7 +99,7 @@ ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password, ...@@ -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 WINAPI MAPILogoff(LHANDLE session, ULONG_PTR uiparam, FLAGS flags,
ULONG reserved ) ULONG reserved )
{ {
FIXME("(0x%08lx 0x%08lx 0x%08lx 0x%08x) Stub\n", session, FIXME("(0x%08lx 0x%08lx 0x%08x 0x%08x) Stub\n", session,
uiparam, flags, reserved); uiparam, flags, reserved);
return SUCCESS_SUCCESS; return SUCCESS_SUCCESS;
} }
......
...@@ -36,7 +36,7 @@ typedef struct IMAPISession *LPMAPISESSION; ...@@ -36,7 +36,7 @@ typedef struct IMAPISession *LPMAPISESSION;
#ifndef WINE_FLAGS_DEFINED #ifndef WINE_FLAGS_DEFINED
#define WINE_FLAGS_DEFINED #define WINE_FLAGS_DEFINED
typedef unsigned long FLAGS; typedef ULONG FLAGS;
#endif #endif
/* Flags for MAPILogon and MAPILogonEx */ /* Flags for MAPILogon and MAPILogonEx */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment