Created
July 11, 2011 13:42
-
-
Save lwe/1075868 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HANDLE hClient = NULL; | |
PWLAN_INTERFACE_INFO_LIST pIntfList = NULL; | |
DWORD negotiatedVersion = 0; | |
DWORD res = 0; | |
int i = 0; | |
// get handle | |
res = WlanOpenHandle(WLAN_API_VERSION, NULL, &negotiatedVersion, &hClient); | |
if (res != ERROR_SUCCESS) { | |
if (hClient != NULL) WlanCloseHandle(hClient, NULL); | |
return -1; // error | |
} | |
// get interfaces | |
res = WlanEnumInterfaces(hClient, NULL, &pIntfList); | |
if (res != ERROR_SUCCESS) { | |
if (pIntfList != NULL) WlanFreeMemory(pIntfList); | |
if (hClient != NULL) WlanCloseHandle(hClient, NULL); | |
return -2; // error | |
} | |
// iterate over interfaces and disconnect | |
for(i = 0; i < pIntfList->dwNumberOfItems; i++) { | |
GUID& guidIntf = &pIntfList->InterfaceInfo[i]->InterfaceGuid; | |
// Disconnect | |
WlanDisonnect(hClient, guidIntf, NULL); | |
} | |
if (pIntfList != NULL) WlanFreeMemory(pIntfList); | |
if (hClient != NULL) WlanCloseHandle(hClient, NULL); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment