a21494ade6
Applied patch from https://github.com/DrKLO/Telegram/pull/99 . Thanks. Added German localization. Thanks to all from https://github.com/DrKLO/Telegram/pull/129 Experimental audio (will not go to market yet, we will switch to opus codec) Improved text drawing perfomance (now Telegram can draw even «War and Peace» in one message) Ability to send multiple photos and documents from external apps Contacts fixes Memory usage optimizations in network code (receiving data) Partly switched to native ByteBuffers (decoding received data) Added support of Telegram API Layer 12 Bug fixes
44 lines
793 B
Java
44 lines
793 B
Java
/*
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Nikolai Kudashov, 2013.
|
|
*/
|
|
|
|
package org.telegram.messenger;
|
|
|
|
public class TLObject {
|
|
public TLObject () {
|
|
|
|
}
|
|
|
|
public void readParams(AbsSerializedData stream) {
|
|
|
|
}
|
|
|
|
public byte[] serialize () {
|
|
return null;
|
|
}
|
|
|
|
public void serializeToStream(AbsSerializedData stream) {
|
|
|
|
}
|
|
|
|
public Class<? extends TLObject> responseClass () {
|
|
return this.getClass();
|
|
}
|
|
|
|
public int layer () {
|
|
return 11;
|
|
}
|
|
|
|
public void parseVector(TLRPC.Vector vector, AbsSerializedData data) {
|
|
|
|
}
|
|
|
|
public void freeResources() {
|
|
|
|
}
|
|
}
|