kernel/eka/debug/crashMonitor/inc/scmbytestreamutil.inl
changeset 247 d8d70de2bd36
parent 0 a41df078684a
child 257 3e88ff8f41d5
equal deleted inserted replaced
201:43365a9b78a3 247:d8d70de2bd36
    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 	 */