summaryrefslogtreecommitdiff
path: root/src/ildasm
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-02-09 10:27:57 +0900
committerJan Kotas <jkotas@microsoft.com>2017-02-08 17:27:57 -0800
commita8798da59a0a99f50d675d7034aa78887c9489bd (patch)
tree5555b3f9388bc24ada32845ec8dc71a4b14c83d3 /src/ildasm
parentc876fe669aff20b9d73a314fada965e9c6eeb5c1 (diff)
downloadcoreclr-a8798da59a0a99f50d675d7034aa78887c9489bd.tar.gz
coreclr-a8798da59a0a99f50d675d7034aa78887c9489bd.tar.bz2
coreclr-a8798da59a0a99f50d675d7034aa78887c9489bd.zip
[x86/Linux] Fix Calling Convertion Mismatch inside ilasm/ildasm (#9410)
Diffstat (limited to 'src/ildasm')
-rw-r--r--src/ildasm/dis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ildasm/dis.h b/src/ildasm/dis.h
index 595e097ae6..9a1af93943 100644
--- a/src/ildasm/dis.h
+++ b/src/ildasm/dis.h
@@ -152,24 +152,24 @@ char *DumpGenericPars(__inout_ecount(SZSTRING_SIZE) char* szString,
#define CHECK_REMAINING_SIZE if(ovadd_le((size_t)szString, SZSTRING_SIZE_M4, (size_t)szptr)) break;
#define SZSTRING_REMAINING_SIZE(x) (ovadd_le((size_t)szString,SZSTRING_SIZE,(size_t)(x))?0:(SZSTRING_SIZE-((size_t)(x)-(size_t)szString)))
-typedef int (*MetaDataGetDispenserFunc) (
+typedef int (STDAPICALLTYPE *MetaDataGetDispenserFunc) (
REFCLSID rclsid, // The class to desired.
REFIID riid, // Interface wanted on class factory.
LPVOID FAR *ppv); // Return interface pointer here.
-typedef int (*GetMetaDataInternalInterfaceFunc) (
+typedef int (STDAPICALLTYPE *GetMetaDataInternalInterfaceFunc) (
LPVOID pData, // [IN] in memory metadata section
ULONG cbData, // [IN] size of the metadata section
DWORD flags, // [IN] CorOpenFlags
REFIID riid, // [IN] desired interface
void **ppv); // [OUT] returned interface
-typedef int (*GetMetaDataInternalInterfaceFromPublicFunc) (
+typedef int (STDAPICALLTYPE *GetMetaDataInternalInterfaceFromPublicFunc) (
IUnknown *pv, // [IN] Given interface
REFIID riid, // [IN] desired interface
void **ppv); // [OUT] returned interface
-typedef int (*GetMetaDataPublicInterfaceFromInternalFunc) (
+typedef int (STDAPICALLTYPE *GetMetaDataPublicInterfaceFromInternalFunc) (
void *pv, // [IN] Given interface
REFIID riid, // [IN] desired interface
void **ppv); // [OUT] returned interface