 |
|
 |
|
Next: can't chat on live messenger?can't see replies?
|
| Author |
Message |
External

Since: Aug 29, 2006 Posts: 38
|
(Msg. 1) Posted: Mon Oct 02, 2006 3:41 pm
Post subject: Problems porting WDM to Vista RC1 Archived from groups: microsoft>public>windowsxp>device_driver>dev (more info?)
|
|
|
I'm trying to port my WDM driver to Vista RC1 but I crashes during
driver initialization.
Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
This function works perfectly in W2K or XP. Did MS do anything
different in this function?
I also can't get my KdPrint statement to be displayed.
John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Aug 29, 2006 Posts: 38
|
(Msg. 2) Posted: Tue Oct 31, 2006 8:06 am
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
wrote:
>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>driver initialization.
>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>This function works perfectly in W2K or XP. Did MS do anything
>different in this function?
>
>I also can't get my KdPrint statement to be displayed.
>
>John
I found out what was causing the problem and there was a change in
Vista.
In the RtlIntegerToUnicode system call, the Unicode String was
initialized using the address to a constant character string (L" ").
Apparently, Vista does not like for you to modify the address pointed
to by L" ". Once I modified the code to allocate memory for the
Unicode String, Vista didn't crash anymore.
My driver is still not loading (see my other post) though.
John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Oct 31, 2006 Posts: 2
|
(Msg. 3) Posted: Tue Oct 31, 2006 9:12 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"john" <jvasquez.DeleteThis@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.DeleteThis@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John
Huummmmmmmmm I thought you already fixed it when you said "I've found out.."
Go get it done John. >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 4) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.RemoveThis@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.RemoveThis@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 5) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 6) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 7) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.TakeThisOut@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.TakeThisOut@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 8) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.DeleteThis@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.DeleteThis@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 9) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 10) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.DeleteThis@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.DeleteThis@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 11) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 12) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.TakeThisOut@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.TakeThisOut@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 13) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 14) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez.TakeThisOut@getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez.TakeThisOut@getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
External

Since: Jan 28, 2004 Posts: 42
|
(Msg. 15) Posted: Thu Nov 02, 2006 9:42 pm
Post subject: Re: Problems porting WDM to Vista RC1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
it doesn't work b/c you are passing read only constant data to a funciton
which will write to it. XP and later has had this functionality, but it
depends on the amount of memory you have in the machine if it is on or not
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"john" <jvasquez DeleteThis @getntds.spam.com> wrote in message
news:7qsek2pi7spehnj2mc2cgu2fsne0bit9ev@4ax.com...
> On Mon, 02 Oct 2006 15:41:54 -0700, john <jvasquez DeleteThis @getntds.spam.com>
> wrote:
>
>>I'm trying to port my WDM driver to Vista RC1 but I crashes during
>>driver initialization.
>>Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call.
>>This function works perfectly in W2K or XP. Did MS do anything
>>different in this function?
>>
>>I also can't get my KdPrint statement to be displayed.
>>
>>John
>
>
> I found out what was causing the problem and there was a change in
> Vista.
>
> In the RtlIntegerToUnicode system call, the Unicode String was
> initialized using the address to a constant character string (L" ").
> Apparently, Vista does not like for you to modify the address pointed
> to by L" ". Once I modified the code to allocate memory for the
> Unicode String, Vista didn't crash anymore.
>
> My driver is still not loading (see my other post) though.
>
> John >> Stay informed about: Problems porting WDM to Vista RC1 |
|
| Back to top |
|
 |  |
| Related Topics: | porting to windows vista - NdisSendPackets do not work - Someone can help me?? Andre Siqueira escreveu: > I'm not "locking" the user buffer because I allocate memory and > then copy the user buffer with NdisMoveMemory. > > I don't use NetBuffers because I want the code run in NDIS &g...
KeQueryTickCount on AMD64 Vista. - I'm building my driver for AMD64 Vista and getting this function unresolved. I checked the wlh\amd64\ntoskrnl.lib from the latest nt6 ddk (the one I'm linking with) and the KeQueryCountTick() is not there anymore (the i386\ntoskrnl.lib counterpart still....
obtaining vista logo for ndis+wdm drivers - Hi everyone, In the "Windows Logo Program 3.0" document I read the following paragraph: "A driver for an Ethernet device must make only NDIS or WDF calls. Any calls to kernel mode components are not allowed." Yet I am not sure what...
Problems with the sound card - Hello, I have problems with the sound card drivers. The driver is installed, a part from it I have Windows XP Pro with SP2 installed and I can listen to music but I can´t control the volumen centre, neither start a conversation in the messenger, as it...
XP printer problems - How can I repair XP printer drivers. I have an HP printer that quit printing. It gives me message stating that the windows driver is missing or corrupt. Thanks fjcosta84 |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|