Two lines in WLAN_WRAP.PAS should be updated to work it in Delphi 10.1 , 10.2 :
Delphi-Quellcode:
pNW_DATA^.SSID := string(PChar(@pBssItem.dot11Ssid.ucSSID)); to
pNW_DATA^.SSID := string(PAnsiChar(@pBssItem.dot11Ssid.ucSSID));
and
Delphi-Quellcode:
pIF_DATA^.SSID := string(PChar(@pAssAttr.dot11Ssid.ucSSID)); to
pIF_DATA^.SSID := string(PAnsiChar(@pAssAttr.dot11Ssid.ucSSID));