luxlabs header browser preview


@class NSObject;
@protocol OS_dispatch_queue;

@interface APDBrowserBluetoothHelper : NSObject {
    BOOL _isBluetoothPoweredOn;
}

@property (nonatomic) void *eventHandlerContext;
@property (nonatomic) void /* function */ *eventHandlerFunc;
@property (nonatomic) struct OpaqueAPDBluetoothHelper { } *helperRef;
@property (readonly, nonatomic) NSObject<OS_dispatch_queue> *queue;
@property (readonly, nonatomic) NSObject<OS_dispatch_queue> *eventQueue;
@property (nonatomic) BOOL isInvalidated;
@property (nonatomic) BOOL bluetoothPowerChangedListeningStarted;

- (id)init;
- (void)dealloc;
- (int)invalidate;
- (int)dispatchEvent:(unsigned int)a0 withEventInfo:(id)a1;
- (int)setPowered:(BOOL)a0;
- (id)getEventString:(unsigned int)a0;
- (int)ensureBluetoothPowerChangedListenerStopped;
- (int)ensureBluetoothPowerEventMonitorStarted;
- (int)getBluetoothPowerOn:(BOOL *)a0;
- (void)handleBluetoothChangedNotificationInternal:(id)a0;
- (int)queryBluetoothPower:(BOOL *)a0;
- (int)setBluetoothPower:(BOOL)a0;
- (int)setEventHandler:(void /* function */ *)a0 context:(void *)a1 helperRef:(struct OpaqueAPDBluetoothHelper { } *)a2;
- (int)startListeningToEvent:(unsigned int)a0;
- (int)stopListeningToEvent:(unsigned int)a0;

@end