* CurrencyWrapper.cs: Fix file name.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIConnectionPointContainer.cs
1 //
2 // System.Runtime.InteropServices.UCOMIConnectionPointContainer.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12         [Guid ("b196b284-bab4-101a-b69c-00aa00341d07")]
13         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
14         public interface UCOMIConnectionPointContainer
15         {
16                 void EnumConnectionPoints (out UCOMIEnumConnectionPoints ppEnum);
17                 void FindConnectionPoint (ref Guid riid, out UCOMIConnectionPoint ppCP);
18         }
19 }