// AForge Direct Show Library // AForge.NET framework // // Copyright © Andrew Kirillov, 2008 // andrew.kirillov@gmail.com // namespace AForge.Video.DirectShow.Internals { using System; using System.Runtime.InteropServices; /// /// The interface indicates that an object supports property pages. /// /// [ComImport, Guid( "B196B28B-BAB4-101A-B69C-00AA00341D07" ), InterfaceType( ComInterfaceType.InterfaceIsIUnknown )] internal interface ISpecifyPropertyPages { /// /// Fills a counted array of GUID values where each GUID specifies the /// CLSID of each property page that can be displayed in the property /// sheet for this object. /// /// /// Pointer to a CAUUID structure that must be initialized /// and filled before returning. /// /// Return's HRESULT error code. /// [PreserveSig] int GetPages( out CAUUID pPages ); } }