ISequentialStream
[Properties (by Name)][Methods (by Name)][Events (by Name)]
Sequential stream object interface
Declaration
Source position: types.pp line 312
Type
ISequentialStream = interface (IUnknown) ['{0c733a30-2a1c-11ce-ade5-00aa0044773d}']
function Read(pv: Pointer; cb: DWORD; pcbRead: PDWord) : HRESULT;
function Write(pv: Pointer; cb: DWORD; pcbWritten: PDWord) : HRESULT;
end
;
Description
ISequentialStream is the interface for streams which only support sequential reading of chunks of data. It is defined for Delphi/Kylix compatibility and should not be used.
Members
Member | Type | Visibility | Description |
---|---|---|---|
Read | Method | default | Read data from the stream |
Write | Method | default | Write data to the stream |
Inheritance
Class | Description |
---|---|
ISequentialStream | Sequential stream object interface |
See also
Name | Description |
---|---|
IStream | COM stream abstraction |