summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Pavlov <lucenticus@gmail.com>2017-03-03 00:27:36 +0300
committerJan Vorlicek <janvorli@microsoft.com>2017-03-02 22:27:36 +0100
commit2f36ab25027b2ddb38f5b88999c1b5a65da3e5b5 (patch)
treeb82e05d6098390d01efd219ef8f6e8d2769fd2f8 /src
parentfdf36f569d0be0fa5ed777084a14851a746fdd58 (diff)
downloadcoreclr-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.h2
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__