Callback objects in NT?

Hi All,
We are porting a driver from 2K to NT, which is a NDIS driver and has shared Callback Objects (for driver to driver communication). As there is no callback Object in NT, how our driver can speak to the next lower driver in NT? Can anyone please suggest some alternate methods of Driver to Driver communication in NT?

Thanks in advance,
Indira


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

IRP completions.
Passing a table of function pointers in IOCTL IRP.
Signaling events (the worst way, since is does not allow to pass a portion of data with the call).

Usually, the second way is used for tightly coupled drivers.

Max

----- Original Message -----
From: “indira veerad”
To: “NT Developers Interest List”
Sent: Thursday, January 10, 2002 9:12 AM
Subject: [ntdev] Callback objects in NT?

Hi All,
We are porting a driver from 2K to NT, which is a NDIS driver and has shared Callback Objects (for driver to driver communication).
As there is no callback Object in NT, how our driver can speak to the next lower driver in NT? Can anyone please suggest some
alternate methods of Driver to Driver communication in NT?

Thanks in advance,
Indira


You are currently subscribed to ntdev as: xxxxx@storagecraft.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com