WlanOpenHandle function wlanapi

int WlanOpenHandle(
  1. int dwClientVersion,
  2. Pointer<NativeType> pReserved,
  3. Pointer<Uint32> pdwNegotiatedVersion,
  4. Pointer<IntPtr> phClientHandle,
)

The WlanOpenHandle function opens a connection to the server.

DWORD WlanOpenHandle(
  DWORD   dwClientVersion,
  PVOID   pReserved,
  PDWORD  pdwNegotiatedVersion,
  PHANDLE phClientHandle
);

Implementation

int WlanOpenHandle(
  int dwClientVersion,
  Pointer pReserved,
  Pointer<Uint32> pdwNegotiatedVersion,
  Pointer<IntPtr> phClientHandle,
) => _WlanOpenHandle(
  dwClientVersion,
  pReserved,
  pdwNegotiatedVersion,
  phClientHandle,
);