mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
Add shell context [WIP]
This commit is contained in:
24
Wox/ShellContext/IEnumIDList.cs
Normal file
24
Wox/ShellContext/IEnumIDList.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Wox.ShellContext
|
||||
{
|
||||
[ComImport(),
|
||||
Guid("000214F2-0000-0000-C000-000000000046"),
|
||||
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
||||
public interface IEnumIDList
|
||||
{
|
||||
[PreserveSig()]
|
||||
uint Next(
|
||||
uint celt,
|
||||
out IntPtr rgelt,
|
||||
out int pceltFetched);
|
||||
|
||||
void Skip(
|
||||
uint celt);
|
||||
|
||||
void Reset();
|
||||
|
||||
IEnumIDList Clone();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user