Files
ghostgram/submodules/TelegramCore/Sources/DeviceSpoof/DeviceSpoofBridge.h
T
ichmagmaus 812 03f35f40b5 feat: add Ghostgram features
- Anti-Delete: save deleted messages locally
- Ghost Mode: hide online status, read receipts
- Voice Morpher: audio processing effects
- Device Spoof: spoof device info
- Custom GhostIcon app icon
- User Notes: personal notes for contacts
- Misc settings and controllers
- GPLv2 License
2026-01-19 12:01:00 +01:00

23 lines
601 B
Objective-C

#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// Objective-C bridge for DeviceSpoofManager (Swift)
/// Provides access to spoofed device information from Objective-C code
@interface DeviceSpoofBridge : NSObject
/// Returns YES if device spoofing is enabled
+ (BOOL)isEnabled;
/// Returns the spoofed device model, or nil if spoofing is disabled or using
/// real device
+ (NSString *_Nullable)spoofedDeviceModel;
/// Returns the spoofed system version, or nil if spoofing is disabled or using
/// real device
+ (NSString *_Nullable)spoofedSystemVersion;
@end
NS_ASSUME_NONNULL_END