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.
Friend dwNumberOfItems As UInteger
Friend dwIndex As UInteger
Friend wlanAvailableNetwork() As WLAN_AVAILABLE_NETWORK
Friend Sub New(ByVal ppAvailableNetworkList As IntPtr)
dwNumberOfItems = CUInt(Marshal.ReadInt32(ppAvailableNetworkList))
dwIndex = CUInt(Marshal.ReadInt32(ppAvailableNetworkList, 4))
wlanAvailableNetwork = New WLAN_AVAILABLE_NETWORK(dwNumberOfItems - 1){}
For i As Integer = 0 To dwNumberOfItems - 1
Dim pWlanAvailableNetwork As New IntPtr(ppAvailableNetworkList.ToInt32() + i * Marshal.SizeOf(GetType(WLAN_AVAILABLE_NETWORK)) + 8)
wlanAvailableNetwork(i) = CType(Marshal.PtrToStructure(pWlanAvailableNetwork, GetType(WLAN_AVAILABLE_NETWORK)), WLAN_AVAILABLE_NETWORK)
Next i
End Sub