Location:
S32STD.H
Link against: estor.lib
class RStoreReadStream : public RReadStream;
Supports the opening and manipulation of an existing stream in a store.
RReadStream
- The read stream interface
RStoreReadStream
- Supports the opening and manipulation of an existing stream in a store
Defined in RStoreReadStream
:
OpenL()
, OpenLC()
Inherited from RReadStream
:
Attach()
,
Close()
,
Detach()
,
Pop()
,
PushL()
,
ReadInt16L()
,
ReadInt32L()
,
ReadInt8L()
,
ReadL()
,
ReadReal32L()
,
ReadReal64L()
,
ReadUint16L()
,
ReadUint32L()
,
ReadUint8L()
,
Release()
,
Source()
IMPORT_C void OpenL(const CStreamStore &aStore, TStreamId anId);
Opens and prepares an existing stream for reading. The function leaves if it cannot complete successfully.
|
IMPORT_C void OpenLC(const CStreamStore &aStore, TStreamId anId);
Opens and prepares an existing stream for reading, leaving a cleanup item on the cleanup stack. The function leaves if it cannot complete successfully.
Placing a cleanup item for the RStoreReadStream onto the cleanup stack allows allocated resources to be cleaned up if a subsequent leave occurs.
|