diff options
author | Evgeny Pavlov <lucenticus@gmail.com> | 2017-03-03 00:27:36 +0300 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2017-03-02 22:27:36 +0100 |
commit | 2f36ab25027b2ddb38f5b88999c1b5a65da3e5b5 (patch) | |
tree | b82e05d6098390d01efd219ef8f6e8d2769fd2f8 /src | |
parent | fdf36f569d0be0fa5ed777084a14851a746fdd58 (diff) | |
download | coreclr-2f36ab25027b2ddb38f5b88999c1b5a65da3e5b5.tar.gz coreclr-2f36ab25027b2ddb38f5b88999c1b5a65da3e5b5.tar.bz2 coreclr-2f36ab25027b2ddb38f5b88999c1b5a65da3e5b5.zip |
[x86/Linux] Add STDCALL for reverse P/Invoke delegates (#9909)
Diffstat (limited to 'src')
-rw-r--r-- | src/vm/gdbjithelpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/gdbjithelpers.h b/src/vm/gdbjithelpers.h index 3a34dd179a..5308784ca8 100644 --- a/src/vm/gdbjithelpers.h +++ b/src/vm/gdbjithelpers.h @@ -27,7 +27,7 @@ struct MethodDebugInfo int localsSize; }; -typedef BOOL (*GetInfoForMethodDelegate)(const char*, unsigned int, MethodDebugInfo& methodDebugInfo); +typedef BOOL (STDCALL *GetInfoForMethodDelegate)(const char*, unsigned int, MethodDebugInfo& methodDebugInfo); extern GetInfoForMethodDelegate getInfoForMethodDelegate; #endif // !__GDBJITHELPERS_H__ |