* CurrencyWrapper.cs: Fix file name.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIConnectionPoint.cs
index db6a0c7b5264f5cb30c7cd106476ae44a1a6e5bc..7879c87331c4e60c6babf5dbe61f9653a9b270c9 100644 (file)
@@ -9,13 +9,14 @@ using System;
 
 namespace System.Runtime.InteropServices
 {
+       [Guid ("b196b286-bab4-101a-b69c-00aa00341d07")]
        [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        public interface UCOMIConnectionPoint
        {
-               void Advise (object pUnkSink, ref int pdwCookie);
-               void EnumConnections (ref UCOMIEnumConnections ppEnum);
-               void GetConnectionInterface (ref Guid pIID);
-               void GetConnectionPointContainer (ref UCOMIConnectionPointContainer ppCPC);
+               void Advise (object pUnkSink, out int pdwCookie);
+               void EnumConnections (out UCOMIEnumConnections ppEnum);
+               void GetConnectionInterface (out Guid pIID);
+               void GetConnectionPointContainer (out UCOMIConnectionPointContainer ppCPC);
                void Unadvise (int dwCookie);
        }
 }