WlanRegisterVirtualStationNotification function wlanapi

int WlanRegisterVirtualStationNotification(
  1. HANDLE hClientHandle,
  2. bool bRegister
)

Used to register and unregister notifications on a virtual station.

To learn more, see learn.microsoft.com/windows/win32/api/wlanapi/nf-wlanapi-wlanregistervirtualstationnotification.

Implementation

@pragma('vm:prefer-inline')
int WlanRegisterVirtualStationNotification(
  HANDLE hClientHandle,
  bool bRegister,
) => _WlanRegisterVirtualStationNotification(
  hClientHandle,
  bRegister ? TRUE : FALSE,
  nullptr,
);