mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
432 B
Objective-C
20 lines
432 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
//! Project version number for GZip.
|
|
FOUNDATION_EXPORT double GZipVersionNumber;
|
|
|
|
//! Project version string for GZip.
|
|
FOUNDATION_EXPORT const unsigned char GZipVersionString[];
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NSData * _Nonnull TGGZipData(NSData * _Nonnull data, float level);
|
|
NSData * _Nullable TGGUnzipData(NSData * _Nonnull data, uint sizeLimit);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|