OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Stream List

Each document maintains a list of open streams that is updated as streams are added and deleted.

This list is headed by the TDocument data StreamList. StreamList is a TStream * that points to the first stream in the list. If there are no streams in the list, StreamList is 0. Each TStream object in the list has a member named NextStream, which points to the next stream in the stream list.

When a new stream is opened in a document object or an existing stream is attached to the document, it is added to the document's stream list. When an existing stream is closed in a document object or detached from the document, it is removed from the document's stream list.

See Also