WlanSetProfile function wlanapi
The WlanSetProfile function sets the content of a specific profile.
DWORD WlanSetProfile(
HANDLE hClientHandle,
const GUID *pInterfaceGuid,
DWORD dwFlags,
LPCWSTR strProfileXml,
LPCWSTR strAllUserProfileSecurity,
BOOL bOverwrite,
PVOID pReserved,
DWORD *pdwReasonCode
);
Implementation
int WlanSetProfile(
int hClientHandle,
Pointer<GUID> pInterfaceGuid,
int dwFlags,
Pointer<Utf16> strProfileXml,
Pointer<Utf16> strAllUserProfileSecurity,
int bOverwrite,
Pointer pReserved,
Pointer<Uint32> pdwReasonCode,
) => _WlanSetProfile(
hClientHandle,
pInterfaceGuid,
dwFlags,
strProfileXml,
strAllUserProfileSecurity,
bOverwrite,
pReserved,
pdwReasonCode,
);