From 8a1abac8f17553f97b2613784db4bde1f5edda96 Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Wed, 18 Nov 2015 19:01:50 +0100 Subject: 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. --- src/vm/proftoeeinterfaceimpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vm/proftoeeinterfaceimpl.cpp') diff --git a/src/vm/proftoeeinterfaceimpl.cpp b/src/vm/proftoeeinterfaceimpl.cpp index 0b2ebe56f6..0c6e31d482 100644 --- a/src/vm/proftoeeinterfaceimpl.cpp +++ b/src/vm/proftoeeinterfaceimpl.cpp @@ -1250,7 +1250,7 @@ BOOL AllocByClassHelper(Object * pBO, void * pv) // to COR_PRF_GC_ROOT_FLAGS. // -void ScanRootsHelper(Object** ppObject, ScanContext *pSC, DWORD dwFlags) +void ScanRootsHelper(Object** ppObject, ScanContext *pSC, uint32_t dwFlags) { CONTRACTL { -- cgit v1.2.3