I try to read asynchronicaly data from file.
I use ZwReadFile function. But as event to wait this function take HANDLE to
event (not Evenmt Object). How to cteate handle to event object.

In news arciwum on google i found sample that use ZwCreateEvent Function.
But in W2003 DDK I can't find this function.

Can I read my file asynchronicaly ???


Radek Michalski

Re: Read file from driver - asychronicaly by Maxim

Maxim
Tue Jul 20 06:01:21 CDT 2004

IoCreateNotificationEvent

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com


"Rados3aw Michalski" <radoslaw.michalski@tpi.remove.pl> wrote in message
news:ufA%23FPkbEHA.216@TK2MSFTNGP10.phx.gbl...
> I try to read asynchronicaly data from file.
> I use ZwReadFile function. But as event to wait this function take HANDLE to
> event (not Evenmt Object). How to cteate handle to event object.
>
> In news arciwum on google i found sample that use ZwCreateEvent Function.
> But in W2003 DDK I can't find this function.
>
> Can I read my file asynchronicaly ???
>
>
> Radek Michalski
>
>



Re: Read file from driver - asychronicaly by Rados3aw

Rados3aw
Tue Jul 20 06:08:27 CDT 2004

I found IoCreateSynchronizationEvent.

Sorry

"Rados3aw Michalski" <radoslaw.michalski@tpi.remove.pl> wrote in message
news:ufA%23FPkbEHA.216@TK2MSFTNGP10.phx.gbl...
> I try to read asynchronicaly data from file.
> I use ZwReadFile function. But as event to wait this function take HANDLE
to
> event (not Evenmt Object). How to cteate handle to event object.
>
> In news arciwum on google i found sample that use ZwCreateEvent Function.
> But in W2003 DDK I can't find this function.
>
> Can I read my file asynchronicaly ???
>
>
> Radek Michalski
>
>



Re: Read file from driver - asychronicaly by Rados3aw

Rados3aw
Tue Jul 20 06:13:43 CDT 2004


"Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
news:%23oe7jjkbEHA.2660@TK2MSFTNGP12.phx.gbl...
> IoCreateNotificationEvent
>
> --

THX