mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
39 lines
511 B
Plaintext
39 lines
511 B
Plaintext
#import "TLMetaRpc.h"
|
|
|
|
@implementation TLMetaRpc
|
|
|
|
- (Class)responseClass
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (int)impliedResponseSignature
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
- (int)layerVersion
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
- (int32_t)TLconstructorSignature
|
|
{
|
|
return 0xabcdef;
|
|
}
|
|
|
|
- (int32_t)TLconstructorName
|
|
{
|
|
return 0xabcdef;
|
|
}
|
|
|
|
- (id<TLObject>)TLbuildFromMetaObject:(std::tr1::shared_ptr<TLMetaObject>)__unused metaObject
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (void)TLfillFieldsWithValues:(std::map<int32_t, TLConstructedValue> *)__unused values
|
|
{
|
|
}
|
|
|
|
@end |