Hi all,
I am new to windows device driver development, I am not able to find out how
to use DDK. Suppose I have .sys file for a particular sample driver, how to
test it?? Please guide me to go through it.
regards
Manish
***************************************************************************
This message is proprietary to Future Software Limited (FSL)
and is intended solely for the use of the individual to whom it
is addressed. It may contain privileged or confidential information
and should not be circulated or used for any purpose other than for
what it is intended.
If you have received this message in error, please notify the
originator immediately. If you are not the intended recipient,
you are notified that you are strictly prohibited from using,
copying, altering, or disclosing the contents of this message.
FSL accepts no responsibility for loss or damage arising from
the use of the information transmitted by this email including
damage from virus.
***************************************************************************
Hello Manish ,
to test a driver you need to load it and start it’s service ,you can do
this many ways ,but the best way for you is download a driver loader
program from OSR.com from following link.
This software will load driver for you and start service ,now you need to
open handle to device driver by using CreateFile then you can communicate
with the driver using this Handle.
the link to download the Driver Loader is
http://www.osr.com/files/osrloaderv22.zip
Are you Manish Khare ???
Hi Krishna,
Thanx alot!!! Can u explain “you need to open handle to device driver by
using CreateFile then you can communicate with the driver using this
Handle”. Till now I have not understood, how I am using DDK, excpet making
.sys files, Can u please tell me how i can test driver, can i debug when
DriverEntry function will be called.
Manish
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Krishna
Sent: Thursday, April 18, 2002 10:26 AM
To: NT Developers Interest List
Subject: [ntdev] Re: NDIS & DDK Help
Hello Manish ,
to test a driver you need to load it and start it’s service ,you can do
this many ways ,but the best way for you is download a driver loader
program from OSR.com from following link.
This software will load driver for you and start service ,now you need to
open handle to device driver by using CreateFile then you can communicate
with the driver using this Handle.
the link to download the Driver Loader is
http://www.osr.com/files/osrloaderv22.zip
Are you Manish Khare ???
You are currently subscribed to ntdev as: xxxxx@future.futsoft.com
To unsubscribe send a blank email to %%email.unsub%%
***************************************************************************
This message is proprietary to Future Software Limited (FSL)
and is intended solely for the use of the individual to whom it
is addressed. It may contain privileged or confidential information
and should not be circulated or used for any purpose other than for
what it is intended.
If you have received this message in error, please notify the
originator immediately. If you are not the intended recipient,
you are notified that you are strictly prohibited from using,
copying, altering, or disclosing the contents of this message.
FSL accepts no responsibility for loss or damage arising from
the use of the information transmitted by this email including
damage from virus.
***************************************************************************
Krishna,
I think u do,nt use CreateFile for NDIS drivers?? am i correct???
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Krishna
Sent: Thursday, April 18, 2002 10:26 AM
To: NT Developers Interest List
Subject: [ntdev] Re: NDIS & DDK Help
Hello Manish ,
to test a driver you need to load it and start it’s service ,you can do
this many ways ,but the best way for you is download a driver loader
program from OSR.com from following link.
This software will load driver for you and start service ,now you need to
open handle to device driver by using CreateFile then you can communicate
with the driver using this Handle.
the link to download the Driver Loader is
http://www.osr.com/files/osrloaderv22.zip
Are you Manish Khare ???
You are currently subscribed to ntdev as: xxxxx@future.futsoft.com
To unsubscribe send a blank email to %%email.unsub%%
***************************************************************************
This message is proprietary to Future Software Limited (FSL)
and is intended solely for the use of the individual to whom it
is addressed. It may contain privileged or confidential information
and should not be circulated or used for any purpose other than for
what it is intended.
If you have received this message in error, please notify the
originator immediately. If you are not the intended recipient,
you are notified that you are strictly prohibited from using,
copying, altering, or disclosing the contents of this message.
FSL accepts no responsibility for loss or damage arising from
the use of the information transmitted by this email including
damage from virus.
***************************************************************************
Hello Manish ,
I dont have exact idea ,but I told you general way ,as there are NDisxx
function for communication. What exactly you want to do with that driver
after loading ?? ,tell me so that I can tell you more appro. way.