Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
DHCP_CLIENT_INFO (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
public struct DHCP_CLIENT_INFO_ARRAY
{
public uint NumElements;
public IntPtr Clients; //List of pointers
struct DHCP_CLIENT_INFO {
public TODO;
}
VB Definition:
<StructLayout(LayoutKind.Sequential)> _
Structure DHCP_CLIENT_INFO_ARRAY
Dim NumElements As Integer
Dim Clients As IntPtr
End Structure
User-Defined Field Types:
None.
VB Definition:
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
Structure DHCP_CLIENT_INFO
Dim ClientIpAddress As Integer
Dim SubnetMask As Integer
Dim ClientHardwareAddress As DHCP_BINARY_DATA
Dim ClientName As String
Dim ClientComment As String
Dim ClientLeaseExpires As DHCP_DATE_TIME
Dim OwnerHost As DHCP_HOST_INFO
End Structure