From: Peter on
Does this function exist? My miniport is not compiling since ndis.h doesn't
contain the prototype. Should I use good ol' NdisDeregisterDevice instead?


From: PCAUSA on
On Apr 14, 1:21 pm, "Peter" <x@y> wrote:
> Does this function exist? My miniport is not compiling since ndis.h doesn't
> contain the prototype. Should I use good ol' NdisDeregisterDevice instead?

These functions are available for NDIS 6 use only. You would se them
only in the Vista and higher build environments.

Thomas F. Divine
http://www.pcausa.com
From: Peter on
Sorry I wasn't clearer...

This is an NDIS 6.1 driver and the version of ndis.h within the NDIS 6.1 WDK
does not contain the prototype. So, what's up with that?

"PCAUSA" <pcausa(a)gmail.com> wrote in message
news:30ac4bd3-4d39-469d-af35-be21e5a996b2(a)m73g2000hsh.googlegroups.com...
On Apr 14, 1:21 pm, "Peter" <x@y> wrote:
> Does this function exist? My miniport is not compiling since ndis.h
> doesn't
> contain the prototype. Should I use good ol' NdisDeregisterDevice instead?

These functions are available for NDIS 6 use only. You would se them
only in the Vista and higher build environments.

Thomas F. Divine
http://www.pcausa.com


From: Pavel A. on
"Peter" <x@y> wrote in message news:OWR7y5nnIHA.5472(a)TK2MSFTNGP03.phx.gbl...
> Sorry I wasn't clearer...
>
> This is an NDIS 6.1 driver and the version of ndis.h within the NDIS 6.1
> WDK does not contain the prototype. So, what's up with that?

In WDK 6001, ndis.h does contain this proto.
But it is conditioned by #if (NTDDI_VERSION >= NTDDI_VISTA)

--PA

> "PCAUSA" <pcausa(a)gmail.com> wrote in message
> news:30ac4bd3-4d39-469d-af35-be21e5a996b2(a)m73g2000hsh.googlegroups.com...
> On Apr 14, 1:21 pm, "Peter" <x@y> wrote:
>> Does this function exist? My miniport is not compiling since ndis.h
>> doesn't
>> contain the prototype. Should I use good ol' NdisDeregisterDevice
>> instead?
>
> These functions are available for NDIS 6 use only. You would se them
> only in the Vista and higher build environments.
>
> Thomas F. Divine
> http://www.pcausa.com
>