Ignore:
Timestamp:
Jan 14, 2011, 2:16:07 PM (13 years ago)
Author:
george
Message:
  • Added: Just started DynNumber class development.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • CoolStreaming/UBitStream.pas

    r122 r125  
    7878function TBitStream.GetSize: LongInt;
    7979var
    80   p: LongInt;
    81 begin
    82   p := Seek(0, soCurrent);
     80  P: LongInt;
     81begin
     82  P := Seek(0, soCurrent);
    8383  GetSize := Seek(0, soEnd);
    84   Seek(p, soBeginning);
     84  Seek(P, soBeginning);
    8585end;
    8686
     
    182182end;
    183183
    184 procedure TMemoryBitStream.SetSize(const AValue:LongInt);
     184procedure TMemoryBitStream.SetSize(const AValue: LongInt);
    185185begin
    186186  FSize := AValue;
Note: See TracChangeset for help on using the changeset viewer.