Source position: jwabluetoothapis.pas line 1240
type _SDP_ELEMENT_DATA = record |
type_: SDP_TYPE; |
specificType: SDP_SPECIFICTYPE; |
case Integer of |
0: ( |
int128: SDP_LARGE_INTEGER_16; |
); |
1: ( |
int64: LONGLONG; |
); |
2: ( |
int32: Integer; |
); |
3: ( |
int16: SHORT; |
); |
4: ( |
int8: CHAR; |
); |
5: ( |
uint128: SDP_ULARGE_INTEGER_16; |
); |
6: ( |
uint64: Int64; |
); |
7: ( |
uint32: ULONG; |
); |
8: ( |
uint16: Word; |
); |
9: ( |
uint8: UCHAR; |
); |
10: ( |
booleanVal: UCHAR; |
); |
11: ( |
uuid128: TGUID; |
); |
12: ( |
uuid32: ULONG; |
); |
13: ( |
uuid16: Word; |
); |
14: ( |
string_: TSpdElementDataString; |
); |
15: ( |
url: TSpdElementDataUrl; |
); |
16: ( |
sequence: TSpdElementDataSequence; |
); |
17: ( |
alternative: TSpdElementDataAlternative; |
); |
end; |