include: Change mapix.h to use ULONG for Win64 compatibility.
This commit is contained in:
parent
230fb06d2e
commit
9896cb4ea6
|
@ -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%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);
|
||||
|
||||
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%08lx 0x%08x) Stub\n", session,
|
||||
FIXME("(0x%08lx 0x%08lx 0x%08x 0x%08x) Stub\n", session,
|
||||
uiparam, flags, reserved);
|
||||
return SUCCESS_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue