summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-11-19 22:31:13 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-11-19 22:31:13 +0100
commitb0b0cf41dd03bcb2c46138491265a96922c2177d (patch)
tree1d8a12b687a1c598e5fd5354b178ae32d9f03784 /src/debug
parentd43234803dedafc7b34273ce76b1c7207065c216 (diff)
downloadcoreclr-b0b0cf41dd03bcb2c46138491265a96922c2177d.tar.gz
coreclr-b0b0cf41dd03bcb2c46138491265a96922c2177d.tar.bz2
coreclr-b0b0cf41dd03bcb2c46138491265a96922c2177d.zip
Replaced remaining types
LPARAM, SSIZE_T
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/daccess/daccess.cpp2
-rw-r--r--src/debug/daccess/dacdbiimpl.cpp2
-rw-r--r--src/debug/daccess/dacimpl.h4
3 files changed, 4 insertions, 4 deletions
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)