Ignore:
Timestamp:
Jan 19, 2014, 12:50:15 AM (10 years ago)
Author:
chronos
Message:
  • Odstraněno: Ukončovací PHP značka ze všech souborů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/php/Base/ProtocolBuffers.php

    r16 r112  
    33class ProtocolBuffers
    44{
    5   function WriteVarint(TMemoryStream* Stream, Value)
     5  function WriteVarint(TMemoryStream Stream, Value)
    66  {
    77    Data = Value & 0x7f;
     
    1616  }
    1717
    18   function ReadVarint(TMemoryStream* Stream)
     18  function ReadVarint(TMemoryStream Stream)
    1919  {
    2020    Data = MemoryStreamReadByte(Stream);
     
    3030  }
    3131}
    32 
    33 ?>
Note: See TracChangeset for help on using the changeset viewer.