From 046321a60079759f9c5f7c4d02e26dfae90c98d2 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Wed, 30 Nov 2016 11:57:27 +0900 Subject: [PATCH] Fix inconsistency between the signatures of GetAppDomain (dotnet/coreclr#8368) Commit migrated from https://github.com/dotnet/coreclr/commit/defed5e515109252cef6e000ffb4139424ae89f6 --- src/coreclr/src/strongname/api/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/strongname/api/common.h b/src/coreclr/src/strongname/api/common.h index 0518c00..c6b9b4d 100644 --- a/src/coreclr/src/strongname/api/common.h +++ b/src/coreclr/src/strongname/api/common.h @@ -192,7 +192,7 @@ Thread * const CURRENT_THREAD = NULL; (void)CURRENT_THREAD_AVAILABLE; /* silence "local variable initialized but not used" warning */ \ #ifndef DACCESS_COMPILE -EXTERN_C AppDomain* GetAppDomain(); +EXTERN_C AppDomain* STDCALL GetAppDomain(); #endif //!DACCESS_COMPILE inline void RetailBreak() -- 2.7.4