TStreamRec
Record used in streaming mechanism.
Declaration
Source position: objects.pp line 243
Type
TStreamRec = packed record
ObjType : Sw\_Word;
VmtLink : pointer;
Load : CodePointer;
Store : CodePointer;
Next : PStreamRec;
end
Description
TSreamRec is used by the Objects unit streaming mechanism: when an object is registered, a TStreamRec record is added to a list of records. This list is used when objects need to be streamed from/streamed to a stream. It contains all the information needed to stream the object.