equal
deleted
inserted
replaced
60 * Returns the next TUInt64 from the stream |
60 * Returns the next TUInt64 from the stream |
61 * @return TUInt64 TUInt64 requested |
61 * @return TUInt64 TUInt64 requested |
62 */ |
62 */ |
63 inline TUint64 TByteStreamReader::ReadInt64() |
63 inline TUint64 TByteStreamReader::ReadInt64() |
64 { |
64 { |
65 return MAKE_TUINT64(ReadInt(), ReadInt()) ; |
65 TUint32 high = ReadInt(); |
|
66 TUint32 low = ReadInt(); |
|
67 return MAKE_TUINT64(high, low) ; |
66 } |
68 } |
67 |
69 |
68 /** |
70 /** |
69 * TByteStreamWriter implementation |
71 * TByteStreamWriter implementation |
70 */ |
72 */ |