Esempio n. 1
0
 internal static extern int WlanScan(
     [In] IntPtr hClientHandle,
     [In, MarshalAs(UnmanagedType.LPStruct)] Guid interfaceGuid,
     [In, Optional] ref Dot11Ssid pDot11Ssid,
     [In, Optional] ref WlanRawData pIeData,
     [In, Out] IntPtr pReserved
     );
Esempio n. 2
0
 internal static extern int WlanGetNetworkBssList(
     [In] IntPtr hClientHandle,
     [In, MarshalAs(UnmanagedType.LPStruct)] Guid interfaceGuid,
     [In, Optional] ref Dot11Ssid pDot11Ssid,
     [In] Dot11BssType dot11BssType,
     [In] bool bSecurityEnabled,
     [In, Out] IntPtr pReserved,
     [Out] out IntPtr ppWlanBssList
     );
Esempio n. 3
0
 public WlanHostedNetworkConnectionSettings(Dot11Ssid SSID, uint MaxNumberOfPeers)
 {
     this.Ssid             = SSID;
     this.MaxNumberOfPeers = MaxNumberOfPeers;
 }