wifi driver



need help in developing driver for Wifi using VC++ and i need help the main problem is that which windows api should i use to access the wifi functionality ?

Re: wifi driver

look for the “DDK” – Driver Development Kit – on MSDN. At that low level, (depending on the underlying technology), you’ll be reading and writing raw bits to either (a) well-known memory locations in a protocol defined by the manufacturer or (b) USB packets in a protocol defined by the manufacturer. It will be your task to translate the bits into windows kernel API callbacks to complete the bridge between the hardware and the OS network stack.