Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IEnumConnections.cs
Go to the documentation of this file.
2
3[ComImport]
4[Guid("B196B287-BAB4-101A-B69C-00AA00341D07")]
5[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
6public interface IEnumConnections
7{
8 [PreserveSig]
9 int Next(int celt, [Out][MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] CONNECTDATA[] rgelt, IntPtr pceltFetched);
10
11 [PreserveSig]
12 int Skip(int celt);
13
14 void Reset();
15
16 void Clone(out IEnumConnections ppenum);
17}
int Next(int celt, [Out][MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)] CONNECTDATA[] rgelt, IntPtr pceltFetched)