summaryrefslogtreecommitdiff
path: root/src/vm/profilinghelper.cpp
diff options
context:
space:
mode:
authorsergey ignatov <sergign60@mail.ru>2018-09-01 17:40:44 +0300
committerJan Kotas <jkotas@microsoft.com>2018-09-01 07:40:44 -0700
commita1757ce8e80cd089d9dc31ba2d4e3246e387a6b8 (patch)
tree5de828b15ed9dc639fd5b3215833836d613c0c57 /src/vm/profilinghelper.cpp
parentd71ed81a4b9ec9d89bcb5c35174ff60d0991c79c (diff)
downloadcoreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.tar.gz
coreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.tar.bz2
coreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.zip
i386: Fixed definition with declaration in eetoprofinterfaceimpl.cpp (#18792)
Diffstat (limited to 'src/vm/profilinghelper.cpp')
-rw-r--r--src/vm/profilinghelper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/profilinghelper.cpp b/src/vm/profilinghelper.cpp
index 03d4332352..a7c64e77ba 100644
--- a/src/vm/profilinghelper.cpp
+++ b/src/vm/profilinghelper.cpp
@@ -460,9 +460,9 @@ void ProfilingAPIUtility::LogProfInfo(int iStringResourceID, ...)
// InitializeProfiling() below solely for the debug-only, test-only code to allow
// enter/leave/tailcall to be turned on at startup without a profiler. See
// code:ProfControlBlock#TestOnlyELT
-EXTERN_C void __stdcall ProfileEnterNaked(UINT_PTR clientData);
-EXTERN_C void __stdcall ProfileLeaveNaked(UINT_PTR clientData);
-EXTERN_C void __stdcall ProfileTailcallNaked(UINT_PTR clientData);
+EXTERN_C void STDMETHODCALLTYPE ProfileEnterNaked(UINT_PTR clientData);
+EXTERN_C void STDMETHODCALLTYPE ProfileLeaveNaked(UINT_PTR clientData);
+EXTERN_C void STDMETHODCALLTYPE ProfileTailcallNaked(UINT_PTR clientData);
#endif //PROF_TEST_ONLY_FORCE_ELT
// ----------------------------------------------------------------------------