Click here to Skip to main content
15,902,299 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hello

i got GUID number of my wlan from regestry

HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > WindowsNT > CurrentVersion > NetworkCards > (number)..

now when i am putting this to my application which will give me list of available wireless network
declaration of GUID is giving me error

GUID pInterfaceGuid = {EDA9289A-ECCD-4C91-AFF1-FDD27353C338};

above one is my GUID for WLAN so please tell me how to declare it.

Thanks in advance
Posted

1 solution

Try it :) :

GUID sGUID = { 0xEDA9289A, 0xECCD, 0x4C91, { 0xAF, 0xF1, 0xFD, 0xD2, 0x73, 0x53, 0xC3, 0x38 } };

...or the function UuidFromString(..)
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900