// 1394.h
typedef struct _ADDRESS_FIFO {
SLIST_ENTRY FifoList;
PMDL FifoMdl;
} ADDRESS_FIFO, *PADDRESS_FIFO;
View the official Windows Driver Kit DDI reference
No description available.
The ADDRESS_FIFO structure is an entry in a singly-linked list of MDLs used by the REQUEST_ALLOCATE_ADDRESS_RANGE IEEE 1394 bus request.
FifoList
Specifies the rest of the list. This is a singly linked list.
FifoMdl
Specifies the MDL for the FIFO element described by this entry of the list.
REQUEST_ALLOCATE_ADDRESS_RANGE