00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface BluetoothDevice : NSObject
00010 {
00011 struct BTDeviceImpl *_device;
00012 }
00013
00014 - (id)initWithDevice:(struct BTDeviceImpl *)fp8;
00015 - (struct BTDeviceImpl *)device;
00016 - (void)setDevice:(struct BTDeviceImpl *)fp8;
00017 - (id)name;
00018 - (id)address;
00019 - (int)type;
00020 - (BOOL)supported;
00021 - (BOOL)paired;
00022 - (BOOL)connected;
00023 - (void)connect;
00024 - (void)setPIN:(id)fp8;
00025 - (void)unpair;
00026 - (void)disconnect;
00027 - (int)compare:(id)fp8;
00028 - (int)batteryLevel;
00029 - (BOOL)supportsBatteryLevel;
00030 - (BOOL)available;
00031 - (BOOL)isAccessory;
00032
00033 @end
00034