WlanQueryInterface

[DllImport("wlanapi.dll", SetLastError = true)]
public static extern uint WlanQueryInterface(
   IntPtr hClientHandle,
   ref GUID pInterfaceGuid,
   WLAN_INTF_OPCODE OpCode,
   IntPtr pReserved,
   out uint pdwDataSize,
   out IntPtr ppData,
   IntPtr pReserved2
);

Microsoft documentation: Link

Last updated