Is it possible to call a function in a usermode dll
from a device driver? If possible using explicit linking.
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
Is it possible to call a function in a usermode dll
from a device driver? If possible using explicit linking.
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
It might be ‘possible’ but it would be the wrong thing to do.
===========================
Mark Roddy
Consultant, Microsoft DDK MVP
Hollis Technology Solutions
xxxxx@hollistech.com
www.hollistech.com
603-321-1032
-----Original Message-----
From: Asher Hoodin
To: “NT Developers Interest List”
Date: Thu, 31 Oct 2002 07:38:57 -0800 (PST)
Subject: [ntdev] call dll function from device driver
> Is it possible to call a function in a usermode dll
> from a device driver? If possible using explicit linking.
>
> __________________________________________________
> Do you Yahoo!?
> HotJobs - Search new jobs daily now
> http://hotjobs.yahoo.com/
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@hollistech.com
> To unsubscribe send a blank email to %%email.unsub%%
> It might be ‘possible’ but it would be the wrong
thing to do.
Well, I know it is not the standard but…if I were to
do it how would I go about that?
THXE06,
Asher
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
No.
----- Original Message -----
From: “Asher Hoodin”
To: “NT Developers Interest List”
Sent: Thursday, October 31, 2002 6:38 PM
Subject: [ntdev] call dll function from device driver
> Is it possible to call a function in a usermode dll
> from a device driver? If possible using explicit linking.
>
> __________________________________________________
> Do you Yahoo!?
> HotJobs - Search new jobs daily now
> http://hotjobs.yahoo.com/
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to %%email.unsub%%
>
Fair enough.
Is it possible to start an executible such as an
installshield from a device driver?
Thanks,
Asher
— “Maxim S. Shatskih”
wrote:
> No.
> > Is it possible to call a function in a usermode
> dll
> > from a device driver? If possible using explicit
> linking.
__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
Never mind.
ZwCreateFile should suffice.
Thank you,
Asher
Is it possible to start an executible such as an
installshield from a device driver?
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
On Windows 98 APC can be used to call a ring 3 function from vxd. And on
Windows NT you can use Inverted Call mechanism ,but it’s toooo complex to
achive the inverted call ,as I know.