// irb.h
BOOLEAN AtaPortRequestTimer(
[in] PVOID ChannelExtension,
IDE_HW_DPC CallBackRoutine,
[in] ULONG TimerValue
);
View the official Windows Driver Kit DDI referenceNo description available.
The AtaPortRequestTimer routine requests a timer callback.
Note The ATA port driver and ATA miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
ChannelExtension [in]A pointer to the channel extension.
CallBackRoutineA pointer to the timer routine.
TimerValue [in]Time interval in units of microseconds.
None
The AtaPortRequestTimer routine informs the ATA port driver that it must call the timer routine that is pointed to by TimerRoutine in the number of microseconds indicated by TimerValue.
The ATA port driver passes a pointer to the channel extension to the timer routine.