Mike McCormack : mapi32: Fix prototype of MAPILogon and MAPILogoff.

Alexandre Julliard julliard at wine.codeweavers.com
Thu May 25 04:16:24 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: d39686f482574a5851cdf4d29e6211bd38d69b10
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=d39686f482574a5851cdf4d29e6211bd38d69b10

Author: Mike McCormack <mike at codeweavers.com>
Date:   Thu May 25 11:41:27 2006 +0900

mapi32: Fix prototype of MAPILogon and MAPILogoff.

---

 dlls/mapi32/mapi32_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mapi32/mapi32_main.c b/dlls/mapi32/mapi32_main.c
index 2f2b717..8b74999 100644
--- a/dlls/mapi32/mapi32_main.c
+++ b/dlls/mapi32/mapi32_main.c
@@ -74,7 +74,7 @@ HRESULT WINAPI MAPIInitialize(LPVOID ini
     return SUCCESS_SUCCESS;
 }
 
-ULONG WINAPI MAPILogon(ULONG uiparam, LPSTR profile, LPSTR password,
+ULONG WINAPI MAPILogon(ULONG_PTR uiparam, LPSTR profile, LPSTR password,
     FLAGS flags, ULONG reserved, LPLHANDLE session)
 {
     FIXME("(0x%08lx %s %p 0x%08lx 0x%08lx %p) Stub\n", uiparam,
@@ -84,7 +84,7 @@ ULONG WINAPI MAPILogon(ULONG uiparam, LP
     return SUCCESS_SUCCESS;
 }
 
-ULONG WINAPI MAPILogoff(LHANDLE session, ULONG uiparam, FLAGS flags,
+ULONG WINAPI MAPILogoff(LHANDLE session, ULONG_PTR uiparam, FLAGS flags,
     ULONG reserved )
 {
     FIXME("(0x%08lx 0x%08lx 0x%08lx 0x%08lx) Stub\n", session,




More information about the wine-cvs mailing list