diff options
author | Jonghyun Park <parjong@gmail.com> | 2016-11-30 11:57:27 +0900 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2016-11-29 18:57:27 -0800 |
commit | defed5e515109252cef6e000ffb4139424ae89f6 (patch) | |
tree | d822033522b2bc1159f835b839ab04b64306df8e /src/strongname | |
parent | a6efd617d94845de4327e2347b78c9e44edc58f9 (diff) | |
download | coreclr-defed5e515109252cef6e000ffb4139424ae89f6.tar.gz coreclr-defed5e515109252cef6e000ffb4139424ae89f6.tar.bz2 coreclr-defed5e515109252cef6e000ffb4139424ae89f6.zip |
Fix inconsistency between the signatures of GetAppDomain (#8368)
Diffstat (limited to 'src/strongname')
-rw-r--r-- | src/strongname/api/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strongname/api/common.h b/src/strongname/api/common.h index 0518c00433..c6b9b4df3c 100644 --- a/src/strongname/api/common.h +++ b/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() |