WlanGetSecuritySettings function wlanapi

int WlanGetSecuritySettings(
  1. int hClientHandle,
  2. int SecurableObject,
  3. Pointer<Int32> pValueType,
  4. Pointer<Pointer<Utf16>> pstrCurrentSDDL,
  5. Pointer<Uint32> pdwGrantedAccess
)

The WlanGetSecuritySettings function gets the security settings associated with a configurable object.

DWORD WlanGetSecuritySettings(
  HANDLE                  hClientHandle,
  WLAN_SECURABLE_OBJECT   SecurableObject,
  PWLAN_OPCODE_VALUE_TYPE pValueType,
  LPWSTR                  *pstrCurrentSDDL,
  PDWORD                  pdwGrantedAccess
);

Implementation

int WlanGetSecuritySettings(
        int hClientHandle,
        int SecurableObject,
        Pointer<Int32> pValueType,
        Pointer<Pointer<Utf16>> pstrCurrentSDDL,
        Pointer<Uint32> pdwGrantedAccess) =>
    _WlanGetSecuritySettings(hClientHandle, SecurableObject, pValueType,
        pstrCurrentSDDL, pdwGrantedAccess);