ishellextinit.cs
来自「C#界面编程」· CS 代码 · 共 20 行
CS
20 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace ShellDll
{
[ComImport()]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("000214e8-0000-0000-c000-000000000046")]
public interface IShellExtInit
{
[PreserveSig()]
int Initialize(
IntPtr pidlFolder,
IntPtr lpdobj,
uint hKeyProgID);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?