-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDefinedClassesCoreBluetooth.pas
More file actions
31 lines (28 loc) · 1.01 KB
/
DefinedClassesCoreBluetooth.pas
File metadata and controls
31 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}
unit DefinedClassesCoreBluetooth;
interface
type
CBATTRequest = objcclass external;
CBAttribute = objcclass external;
CBCentral = objcclass external;
CBCentralManager = objcclass external;
CBCharacteristic = objcclass external;
CBDescriptor = objcclass external;
CBL2CAPChannel = objcclass external;
CBManager = objcclass external;
CBMutableCharacteristic = objcclass external;
CBMutableDescriptor = objcclass external;
CBMutableService = objcclass external;
CBPeer = objcclass external;
CBPeripheral = objcclass external;
CBPeripheralManager = objcclass external;
CBService = objcclass external;
CBUUID = objcclass external;
CBCentralManagerDelegateProtocol = objcprotocol external name 'CBCentralManagerDelegate';
CBPeripheralDelegateProtocol = objcprotocol external name 'CBPeripheralDelegate';
CBPeripheralManagerDelegateProtocol = objcprotocol external name 'CBPeripheralManagerDelegate';
implementation
end.