include: Redefine LHANDLE as ULONG_PTR.

This commit is contained in:
Owen Rudge 2009-12-16 10:44:20 -06:00 committed by Alexandre Julliard
parent 1b2ea8b2e9
commit 4c8bd544e1
2 changed files with 2 additions and 2 deletions

View File

@ -402,7 +402,7 @@ ULONG WINAPI MAPISendMail( LHANDLE session, ULONG_PTR uiparam,
HRESULT res;
DWORD size;
TRACE( "(0x%08x 0x%08lx %p 0x%08x 0x%08x)\n", session, uiparam,
TRACE( "(0x%08lx 0x%08lx %p 0x%08x 0x%08x)\n", session, uiparam,
message, flags, reserved );
/* Check to see if we have a Simple MAPI provider loaded */

View File

@ -27,7 +27,7 @@ extern "C" {
#ifndef __LHANDLE
#define __LHANDLE
typedef ULONG LHANDLE, *LPLHANDLE;
typedef ULONG_PTR LHANDLE, *LPLHANDLE;
#endif
#define lhSessionNull ((LHANDLE)0)