You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
464 B
C#
16 lines
464 B
C#
namespace OPC
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[ComImport, ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("0002E000-0000-0000-C000-000000000046")]
|
|
internal interface IEnumGUID
|
|
{
|
|
int Next([In] int celt, [In] ref Guid rgelt, out int pceltFetched);
|
|
int Skip([In] int celt);
|
|
int Reset();
|
|
int Clone([MarshalAs(UnmanagedType.IUnknown)] out object ppUnk);
|
|
}
|
|
}
|
|
|