mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 20:21:26 +00:00
19 lines
341 B
Objective-C
19 lines
341 B
Objective-C
#import "LegacyComponentsGlobals.h"
|
|
|
|
@class TGLocalization;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
TGLocalization *effectiveLocalization();
|
|
NSString *TGLocalized(NSString *s);
|
|
bool TGObjectCompare(id obj1, id obj2);
|
|
bool TGStringCompare(NSString *s1, NSString *s2);
|
|
void TGLog(NSString *format, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|