Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/CorApi
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-01-24 14:20:40 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-01-24 14:20:40 +0300
commit0fcbd69320bae7b0af948e84f568a284b2fc897d (patch)
tree5bcde15db9a82c440504f0e4f974c83fb554f171 /CorApi
parentb093280f55fe61abe2b8be0b0cc7e48e10ecc8df (diff)
parent7c1ad5b68722c63649be5aff85b2ecc0e995e869 (diff)
Merge branch 'debuggerVisualizers' into 'master'
Conflicts: main/external/debugger-libs main/src/core/MonoDevelop.Ide/ExtensionModel/StockIcons.addin.xml main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj version-checks
Diffstat (limited to 'CorApi')
-rw-r--r--CorApi/IMetadataImport.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/CorApi/IMetadataImport.cs b/CorApi/IMetadataImport.cs
index 8673fa3..463d899 100644
--- a/CorApi/IMetadataImport.cs
+++ b/CorApi/IMetadataImport.cs
@@ -99,7 +99,10 @@ namespace Microsoft.Samples.Debugging.CorMetadata.NativeApi
// mdInterfaceImpl iiImpl, // [IN] InterfaceImpl token.
// mdTypeDef *pClass, // [OUT] Put implementing class token here.
// mdToken *ptkIface) PURE; // [OUT] Put implemented interface token here.
- void GetInterfaceImplProps_();
+ void GetInterfaceImplProps (
+ [In] int iiImpl,
+ [Out] out int pClass,
+ [Out] out int ptkIface);
#endif
// STDMETHOD(GetTypeRefProps)( // S_OK or error.
// mdTypeRef tr, // [IN] TypeRef token.
@@ -703,7 +706,10 @@ namespace Microsoft.Samples.Debugging.CorMetadata.NativeApi
// mdInterfaceImpl iiImpl, // [IN] InterfaceImpl token.
// mdTypeDef *pClass, // [OUT] Put implementing class token here.
// mdToken *ptkIface) PURE; // [OUT] Put implemented interface token here.
- new void GetInterfaceImplProps_();
+ new void GetInterfaceImplProps (
+ [In] int iiImpl,
+ [Out] out int pClass,
+ [Out] out int ptkIface);
#endif
// STDMETHOD(GetTypeRefProps)( // S_OK or error.
// mdTypeRef tr, // [IN] TypeRef token.