mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
03f35f40b5
- 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
23 lines
601 B
Objective-C
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
|