Hi all,
I developed a mirror driver that is able to map its framebuffer into a
usermode process' context. (The usermode app does this by calling ExtEscape
on the mirror driver). This is all working fine but what i really want is a
seperate service .exe and be able to map a specific session's mirror driver
framebuffer into that service app.
Obviously the problem here is that the server .exe and the session the
mirror driver is in are probably different. I was thinking about using some
kind of intermediate/broker process in every session but I'd really like to
avoid ending up mapping the mirror driver's framebuffer into this
intermediate/broker process and then somehow send it to the service app. So
in other words: i want to be able to call a particular mirror driver's
DrvEscape function so that it can map the framebuffer into the calling
process (my service in this case).
Thanks in advance!