|
Prev: How do you execute an app that needs admin privs from a user acct?
Next: copy from contiguous kernel memory - better way?
From: Peter on 14 Apr 2008 13:21 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 14 Apr 2008 17:20 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 14 Apr 2008 18:23 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 14 Apr 2008 19:53
"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 > |