From b0b0cf41dd03bcb2c46138491265a96922c2177d Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Thu, 19 Nov 2015 22:31:13 +0100 Subject: Replaced remaining types LPARAM, SSIZE_T --- src/debug/daccess/daccess.cpp | 2 +- src/debug/daccess/dacdbiimpl.cpp | 2 +- src/debug/daccess/dacimpl.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/debug') diff --git a/src/debug/daccess/daccess.cpp b/src/debug/daccess/daccess.cpp index d6990ecf7a..28b37df394 100644 --- a/src/debug/daccess/daccess.cpp +++ b/src/debug/daccess/daccess.cpp @@ -8160,7 +8160,7 @@ void DacHandleWalker::GetRefCountedHandleInfo( *pIsStrong = FALSE; } -void CALLBACK DacHandleWalker::EnumCallbackSOS(PTR_UNCHECKED_OBJECTREF handle, LPARAM *pExtraInfo, LPARAM param1, LPARAM param2) +void CALLBACK DacHandleWalker::EnumCallbackSOS(PTR_UNCHECKED_OBJECTREF handle, uintptr_t *pExtraInfo, uintptr_t param1, uintptr_t param2) { SUPPORTS_DAC; diff --git a/src/debug/daccess/dacdbiimpl.cpp b/src/debug/daccess/dacdbiimpl.cpp index 0c67f4727d..20d76f67cb 100644 --- a/src/debug/daccess/dacdbiimpl.cpp +++ b/src/debug/daccess/dacdbiimpl.cpp @@ -7459,7 +7459,7 @@ HRESULT DacHandleWalker::Next(ULONG celt, DacGcReference roots[], ULONG *pceltFe } -void CALLBACK DacHandleWalker::EnumCallbackDac(PTR_UNCHECKED_OBJECTREF handle, LPARAM *pExtraInfo, LPARAM param1, LPARAM param2) +void CALLBACK DacHandleWalker::EnumCallbackDac(PTR_UNCHECKED_OBJECTREF handle, uintptr_t *pExtraInfo, uintptr_t param1, uintptr_t param2) { SUPPORTS_DAC; diff --git a/src/debug/daccess/dacimpl.h b/src/debug/daccess/dacimpl.h index 202d47eaed..e7d81fe32e 100644 --- a/src/debug/daccess/dacimpl.h +++ b/src/debug/daccess/dacimpl.h @@ -2152,8 +2152,8 @@ private: static UINT32 BuildTypemask(UINT types[], UINT typeCount); private: - static void CALLBACK EnumCallbackSOS(PTR_UNCHECKED_OBJECTREF pref, LPARAM *pExtraInfo, LPARAM userParam, LPARAM type); - static void CALLBACK EnumCallbackDac(PTR_UNCHECKED_OBJECTREF pref, LPARAM *pExtraInfo, LPARAM userParam, LPARAM type); + static void CALLBACK EnumCallbackSOS(PTR_UNCHECKED_OBJECTREF pref, uintptr_t *pExtraInfo, uintptr_t userParam, uintptr_t type); + static void CALLBACK EnumCallbackDac(PTR_UNCHECKED_OBJECTREF pref, uintptr_t *pExtraInfo, uintptr_t userParam, uintptr_t type); bool FetchMoreHandles(HANDLESCANPROC proc); static inline bool IsAlwaysStrongReference(unsigned int type) -- cgit v1.2.3