Einzelnen Beitrag anzeigen

rimba

Registriert seit: 11. Mär 2017
1 Beiträge
 
#7

AW: WLAN-API (für DELPHI) - Update & DEMO

  Alt 7. Apr 2017, 18:21
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));
  Mit Zitat antworten Zitat