mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
25 lines
482 B
C#
25 lines
482 B
C#
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();
|
|
}
|
|
}
|