Approaches to get NDIS_WWAN_DEVICE_CAPS data

Hi,

I want retrieve NDIS_WWAN_DEVICE_CAPS (capability of WWAN device) using OID_WWAN_DEVICE_CAPS OID through Miniport driver NDIS 6.20.

Is it possible read such data from user level (through application) or i need to write driver to read such data?

what are the approaches??

-deven

WWAN has a very nice usermode API, so you may not need to resort to low-level NDIS constructs like OID requests.

See IMbnInterface::GetInterfaceCapability http://msdn.microsoft.com/en-us/library/dd323100(v=VS.85).aspx

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@gmail.com
Sent: Wednesday, November 03, 2010 10:30 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Approaches to get NDIS_WWAN_DEVICE_CAPS data

Hi,

I want retrieve NDIS_WWAN_DEVICE_CAPS (capability of WWAN device) using OID_WWAN_DEVICE_CAPS OID through Miniport driver NDIS 6.20.

Is it possible read such data from user level (through application) or i need to write driver to read such data?

what are the approaches??

-deven


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer

Thanks Jeffrey.

It works fine.

Thanks a lot.