kernel/eka/debug/crashMonitor/inc/scmbytestreamutil.inl
branchRCL_3
changeset 257 3e88ff8f41d5
parent 256 c1f20ce4abcf
equal deleted inserted replaced
256:c1f20ce4abcf 257:3e88ff8f41d5
    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 		TUint32 high = ReadInt();
    65 		return  MAKE_TUINT64(ReadInt(), ReadInt()) ;
    66 		TUint32 low = ReadInt();
       
    67 		return  MAKE_TUINT64(high, low) ;
       
    68 		}
    66 		}
    69 	
    67 	
    70 	/**
    68 	/**
    71 	 * TByteStreamWriter implementation
    69 	 * TByteStreamWriter implementation
    72 	 */	
    70 	 */