summaryrefslogtreecommitdiff
path: root/src/gcinfo
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-11-18 19:01:50 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-11-18 19:01:50 +0100
commit8a1abac8f17553f97b2613784db4bde1f5edda96 (patch)
tree5718520afd416f267d976065be079c3daf32067a /src/gcinfo
parent76942bb17c28084b0fdad8b6836fb433d9302789 (diff)
downloadcoreclr-8a1abac8f17553f97b2613784db4bde1f5edda96.tar.gz
coreclr-8a1abac8f17553f97b2613784db4bde1f5edda96.tar.bz2
coreclr-8a1abac8f17553f97b2613784db4bde1f5edda96.zip
Replace most windows style types by c++ types
This change replaces DWORD, LONGLONG, ULONGLONG, SIZE_T, BYTE, LONG32 and few more by standard c++ types. The DWORD still remains present in signatures of Windows APIs used by the GC. There are few issues with those that need to get fixed.
Diffstat (limited to 'src/gcinfo')
-rw-r--r--src/gcinfo/gcinfodumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gcinfo/gcinfodumper.cpp b/src/gcinfo/gcinfodumper.cpp
index dc46e1d9d2..9d24163f87 100644
--- a/src/gcinfo/gcinfodumper.cpp
+++ b/src/gcinfo/gcinfodumper.cpp
@@ -44,7 +44,7 @@ size_t GcInfoDumper::GetGCInfoSize()
void GcInfoDumper::LivePointerCallback (
LPVOID hCallback, // callback data
OBJECTREF* pObject, // address of obect-reference we are reporting
- DWORD flags // is this a pinned and/or interior pointer
+ uint32_t flags // is this a pinned and/or interior pointer
DAC_ARG(DacSlotLocation loc)) // the location of the slot
{
GcInfoDumper *pDumper = (GcInfoDumper*)hCallback;