Hello,
I need to save some information(for example, data in memory buffer) in
Display Driver, but i don't know how to do this.(ZwXxx Routines?)

Anyone can help me please?
Thanks!

Re: How to save data in Display Driver? by Tim

Tim
Mon Jun 19 23:17:06 CDT 2006

zzhikang <zzhikang@discussions.microsoft.com> wrote:

>Hello,
>I need to save some information(for example, data in memory buffer) in
>Display Driver, but i don't know how to do this.(ZwXxx Routines?)

The display driver can't do it. It can only access the routines offered by
win32k.sys. You have to call into the miniport driver and let the miniport
do it for you.
--
- Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.

RE: How to save data in Display Driver? by MunishS

MunishS
Wed Jun 28 11:43:01 CDT 2006

Hello,

Try to use EngMapFile. This creates a memory mapped file and you can write
to this memory mapped file.
--
regards
Munish_S


"zzhikang" wrote:

> Hello,
> I need to save some information(for example, data in memory buffer) in
> Display Driver, but i don't know how to do this.(ZwXxx Routines?)
>
> Anyone can help me please?
> Thanks!