summaryrefslogtreecommitdiff
path: root/src/pal/prebuilt
diff options
context:
space:
mode:
authorEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-04-27 12:14:03 -0700
committerEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-04-27 12:14:03 -0700
commit44d84e920e58c9020b5d6dc7e86b5e2f45fcd531 (patch)
treee4d22d6dc1d9f193f1a37d2074d574ab7d98e0b9 /src/pal/prebuilt
parent31267907a3a999b0598d0f4bc154a52e8ed1fb89 (diff)
downloadcoreclr-44d84e920e58c9020b5d6dc7e86b5e2f45fcd531.tar.gz
coreclr-44d84e920e58c9020b5d6dc7e86b5e2f45fcd531.tar.bz2
coreclr-44d84e920e58c9020b5d6dc7e86b5e2f45fcd531.zip
Mark dbgshim functions as extern "C", for easier load via GetProcAddress
Diffstat (limited to 'src/pal/prebuilt')
-rw-r--r--src/pal/prebuilt/inc/mscoree.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pal/prebuilt/inc/mscoree.h b/src/pal/prebuilt/inc/mscoree.h
index a526da58b6..4ddeb5a7c9 100644
--- a/src/pal/prebuilt/inc/mscoree.h
+++ b/src/pal/prebuilt/inc/mscoree.h
@@ -281,7 +281,11 @@ DECLARE_DEPRECATED void STDMETHODCALLTYPE CorExitProcess(int exitCode);
DEPRECATED_CLR_STDAPI LoadStringRC(UINT iResouceID, _Out_writes_z_(iMax) LPWSTR szBuffer, int iMax, int bQuiet);
typedef HRESULT (__stdcall *FLockClrVersionCallback) ();
DEPRECATED_CLR_STDAPI LockClrVersion(FLockClrVersionCallback hostCallback,FLockClrVersionCallback *pBeginHostSetup,FLockClrVersionCallback *pEndHostSetup);
+/*
+On Unix this depricated function produces declaration conflict with another function with the same name from DbgShim.
+We don't expect depricated functions to be used on non-Windows anyway.
DEPRECATED_CLR_STDAPI CreateDebuggingInterfaceFromVersion(int iDebuggerVersion, LPCWSTR szDebuggeeVersion, IUnknown ** ppCordb);
+*/
DEPRECATED_CLR_STDAPI GetVersionFromProcess(HANDLE hProcess, _Out_writes_to_(cchBuffer, *pdwLength) LPWSTR pVersion, DWORD cchBuffer, _Out_ DWORD* dwLength);
typedef HRESULT (STDAPICALLTYPE *FnGetCLRRuntimeHost)(REFIID riid, IUnknown **pUnk);
typedef /* [public] */