Re: [newbie] KEvent does not work

Couple things to watch out for. Do not create this in the init section
because this memory will go away on you. So creating the kevent only in the
scope of driver entry is a bad thing.

There is an example of kbfilter that uses a KEvent between an application
and a driver. This will show how to do it.

Basically in you header you need a pointer to a KEvent. Then is say your
IOCTL handler you create the KEvent using YourEvent = new (NonPagedPool)
KEvent("your_name);

If your still having trouble then send an e-mail to thier support people at
xxxxx@numega.com. Give them your serial number and as much detail as
possible. They are usually pretty helpful.