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

📄 icreatedevenum.cs

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

	// ICreateDevEnum interface
	//
	// Creates an enumerator for a list of filters and
	// hardware devices in a specified filter category
	//
	[ComImport,
	Guid("29840822-5B84-11D0-BD3B-00A0C911CE86"),
	InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
	public interface ICreateDevEnum
	{
		// Creates a class enumerator for the specified category
		[PreserveSig]
		int CreateClassEnumerator(
			[In] ref Guid pType,
			[Out] out UCOMIEnumMoniker ppEnumMoniker,
			[In] int dwFlags);
	}
}

⌨️ 快捷键说明

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