summaryrefslogtreecommitdiff
path: root/src/vm/profilinghelper.cpp
diff options
context:
space:
mode:
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 9f9de490cf..6082cba488 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 ProfileEnterNaked(UINT_PTR clientData);
-EXTERN_C void ProfileLeaveNaked(UINT_PTR clientData);
-EXTERN_C void ProfileTailcallNaked(UINT_PTR clientData);
+EXTERN_C __stdcall void ProfileEnterNaked(UINT_PTR clientData);
+EXTERN_C __stdcall void ProfileLeaveNaked(UINT_PTR clientData);
+EXTERN_C __stdcall void ProfileTailcallNaked(UINT_PTR clientData);
#endif //PROF_TEST_ONLY_FORCE_ELT
// ----------------------------------------------------------------------------