summaryrefslogtreecommitdiff
path: root/src/vm/stdinterfaces.h
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2018-12-08 10:41:29 -0800
committerGitHub <noreply@github.com>2018-12-08 10:41:29 -0800
commit12fafad1c95a3379a0d8bd9e584a8161cb3f9fe1 (patch)
tree844169d14eba98544fb1a75f26976915775b76b1 /src/vm/stdinterfaces.h
parentd26b3b538dae408635806bb86d14e6d64f6cbd80 (diff)
downloadcoreclr-12fafad1c95a3379a0d8bd9e584a8161cb3f9fe1.tar.gz
coreclr-12fafad1c95a3379a0d8bd9e584a8161cb3f9fe1.tar.bz2
coreclr-12fafad1c95a3379a0d8bd9e584a8161cb3f9fe1.zip
Remove `TryGetGuid()` and `GetDefaultInterfaceForCoclass()` from the (#21447)
* Remove `TryGetGuid()` and `GetDefaultInterfaceForCoclass()` from the stdinterfaces API surface.
Diffstat (limited to 'src/vm/stdinterfaces.h')
-rw-r--r--src/vm/stdinterfaces.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/vm/stdinterfaces.h b/src/vm/stdinterfaces.h
index ab0e4b22bd..aa79d72eca 100644
--- a/src/vm/stdinterfaces.h
+++ b/src/vm/stdinterfaces.h
@@ -518,20 +518,7 @@ InternalDispatchImpl_Invoke (
IErrorInfo *GetSupportedErrorInfo(IUnknown *iface, REFIID riid, BOOL checkForIRestrictedErrInfo = TRUE);
//------------------------------------------------------------------------------------------
-// Helper functions that return HRESULT's instead of throwing exceptions.
-HRESULT TryGetGuid(MethodTable* pClass, GUID* pGUID, BOOL b);
-
-//------------------------------------------------------------------------------------------
// Helpers to get the ITypeInfo* for a type.
HRESULT GetITypeInfoForEEClass(MethodTable *pMT, ITypeInfo **ppTI, bool bClassInfo = false);
-HRESULT GetDefaultInterfaceForCoclass(ITypeInfo *pTI, ITypeInfo **ppTIDef);
-
-//-------------------------------------------------------------------------------------
-// Helper to get the GUID of the typelib that is created from an assembly.
-HRESULT GetTypeLibGuidForAssembly(Assembly *pAssembly, GUID *pGuid);
-
-//-------------------------------------------------------------------------------------
-// Helper for IInspectable's GetRuntimeClassName on an IReference<T> or IReferenceArray<T>.
-void GetRuntimeClassNameForIReferenceOrIReferenceArray(MethodTable* pInstantiatedType, BOOL fIsIReferenceArray, SString& className);
#endif