⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ienumpins.cs

📁 摄像管理系统
💻 CS
字号:
namespace dshow.Core
{
	using System;
	using System.Runtime.InteropServices;

	// IEnumPins interface
	//
	// Enumerates pins on a filter
	//
	[ComImport,
	Guid("56A86892-0AD4-11CE-B03A-0020AF0BA770"),
	InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
	public interface IEnumPins
	{
		// Retrieves a specified number of pins
		[PreserveSig]
		int Next(
			[In] int cPins,
			[Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)] IPin[] ppPins,
			[Out] out int pcFetched);

		// Skips over a specified number of pins
		[PreserveSig]
		int Skip(
			[In] int cPins);

		// Resets the enumeration sequence to the beginning
		[PreserveSig]
		int Reset();

		// Makes a copy of the enumerator with the same enumeration state
		[PreserveSig]
		void Clone(
			[Out] out IEnumPins ppEnum);
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -