Hi Everyone,
I am developing an NDIS6.0 network driver for Vista Beta2. I try to use
NdisOpenConfigurationEx function to get a configuration handle that allows
access to configuration parameters in the registry.
I supply the NdisHandle parameter obtained in MPInitialize call back function.

NdisOpenConfigurationEx fails with status code
c000000d(STATUS_INVALID_PARAMETER).

This works fine on Beta1.

Could any one throw some light on it.

Thanks in Advance.
Chiranjeevi.

Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 build) by Pankaj

Pankaj
Mon Apr 10 14:29:16 CDT 2006

The arguments of NdisOpenConfigurationEx are changed in a way that it does
not generate a compiler error but fails at run-time. Instead of NDIS_HANDLE
it takes some object pointer as first parameter. The new prototype might be
in the latest Windows Driver Kits, try that or i can send it to you later in
the day.

--
Pankaj Garg
This posting is provided "AS IS" with no warranties and confers no rights.


"chiranjeevi" <chiranjeevi@discussions.microsoft.com> wrote in message
news:BB4EA2B5-57A0-4000-9F80-14E2951F8E2D@microsoft.com...
> Hi Everyone,
> I am developing an NDIS6.0 network driver for Vista Beta2. I try to use
> NdisOpenConfigurationEx function to get a configuration handle that allows
> access to configuration parameters in the registry.
> I supply the NdisHandle parameter obtained in MPInitialize call back
function.
>
> NdisOpenConfigurationEx fails with status code
> c000000d(STATUS_INVALID_PARAMETER).
>
> This works fine on Beta1.
>
> Could any one throw some light on it.
>
> Thanks in Advance.
> Chiranjeevi.
>
>



Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 buil by chiranjeevi

chiranjeevi
Tue Apr 11 01:47:01 CDT 2006

Thanks Pankaj,
Can you please send the new prototype for NdisOpenConfigurationEx.
And also can you give the link from which we can download latest WDK(the one
in which this new prototype is declared).

Chiranjeevi.


"Pankaj Garg" wrote:

> The arguments of NdisOpenConfigurationEx are changed in a way that it does
> not generate a compiler error but fails at run-time. Instead of NDIS_HANDLE
> it takes some object pointer as first parameter. The new prototype might be
> in the latest Windows Driver Kits, try that or i can send it to you later in
> the day.
>
> --
> Pankaj Garg
> This posting is provided "AS IS" with no warranties and confers no rights.
>
>
> "chiranjeevi" <chiranjeevi@discussions.microsoft.com> wrote in message
> news:BB4EA2B5-57A0-4000-9F80-14E2951F8E2D@microsoft.com...
> > Hi Everyone,
> > I am developing an NDIS6.0 network driver for Vista Beta2. I try to use
> > NdisOpenConfigurationEx function to get a configuration handle that allows
> > access to configuration parameters in the registry.
> > I supply the NdisHandle parameter obtained in MPInitialize call back
> function.
> >
> > NdisOpenConfigurationEx fails with status code
> > c000000d(STATUS_INVALID_PARAMETER).
> >
> > This works fine on Beta1.
> >
> > Could any one throw some light on it.
> >
> > Thanks in Advance.
> > Chiranjeevi.
> >
> >
>
>
>

Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 build) by fat_boy

fat_boy
Tue Apr 11 06:14:20 CDT 2006

Hi

I have sen this too on Vista Beta 1. It is just plain broken. I
havent tested the later Vistas yet, too much other stuff to implement
first.


Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 buil by Pavel

Pavel
Tue Apr 11 16:15:20 CDT 2006

Check the ndis.h file; the actual proto is there.

--PA

"chiranjeevi" <chiranjeevi@discussions.microsoft.com> wrote in message
news:22D2BFF0-1830-4020-8694-C0AD3B806C9E@microsoft.com...
> Thanks Pankaj,
> Can you please send the new prototype for NdisOpenConfigurationEx.
> And also can you give the link from which we can download latest WDK(the one
> in which this new prototype is declared).
>
> Chiranjeevi.
>
>
> "Pankaj Garg" wrote:
>
>> The arguments of NdisOpenConfigurationEx are changed in a way that it does
>> not generate a compiler error but fails at run-time. Instead of NDIS_HANDLE
>> it takes some object pointer as first parameter. The new prototype might be
>> in the latest Windows Driver Kits, try that or i can send it to you later in
>> the day.
>>
>> --
>> Pankaj Garg
>> This posting is provided "AS IS" with no warranties and confers no rights.
>>
>>
>> "chiranjeevi" <chiranjeevi@discussions.microsoft.com> wrote in message
>> news:BB4EA2B5-57A0-4000-9F80-14E2951F8E2D@microsoft.com...
>> > Hi Everyone,
>> > I am developing an NDIS6.0 network driver for Vista Beta2. I try to use
>> > NdisOpenConfigurationEx function to get a configuration handle that allows
>> > access to configuration parameters in the registry.
>> > I supply the NdisHandle parameter obtained in MPInitialize call back
>> function.
>> >
>> > NdisOpenConfigurationEx fails with status code
>> > c000000d(STATUS_INVALID_PARAMETER).
>> >
>> > This works fine on Beta1.
>> >
>> > Could any one throw some light on it.
>> >
>> > Thanks in Advance.
>> > Chiranjeevi.
>> >
>> >
>>
>>
>>



Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 buil by chiranjeevi

chiranjeevi
Wed Apr 12 01:13:02 CDT 2006

Thanks,

I have WDK 5112 version(build environment and documentation). Can I use this
for Windows Vista Beta2 O.S (5308- February release).
I am facing this problem, when i build the driver on this build environment
and use the driver in Vista Beta2(5308 February Release).

Thanks,
Chiranjeevi

"fat_boy" wrote:

> Hi
>
> I have sen this too on Vista Beta 1. It is just plain broken. I
> havent tested the later Vistas yet, too much other stuff to implement
> first.
>
>

Re: NdisOpenConfigurationEx fails on Windows Vista Beta2(5308 buil by fat_boy

fat_boy
Wed Apr 12 02:38:42 CDT 2006

Well, the later the better, but I havent tested this yet so I cant say
if this function works yet or not.