BTH_LE_UUID-Struktur (bthledef.h)
Die BTH_LE_UUID-Struktur enthält Informationen zu einem Bluetooth Low Energy (LE) Universally Unique Identifier (UUID).
Syntax
typedef struct _BTH_LE_UUID {
BOOLEAN IsShortUuid;
union {
USHORT ShortUuid;
GUID LongUuid;
} Value;
} BTH_LE_UUID, *PBTH_LE_UUID;
Member
IsShortUuid
Gibt an, ob die Le-Id (Low Energy) einen um 16 Bit verkürzten Wert UUID aufweist oder ob es sich um einen langen 128-Bit-Wert handelt.
Value
Der Wert der UUID.
Value.ShortUuid
Der kurze 16-Bit-Wert der UUID. Dieses Element gilt nur, wenn IsShortUuid TRUE ist.
Value.LongUuid
Der lange 128-Bit-Wert der UUID. Dieses Element gilt nur, wenn IsShortUuid FALSE ist.
Anforderungen
Anforderung | Wert |
---|---|
Unterstützte Mindestversion (Client) | Versionen:_Supported in Windows 8 |
Kopfzeile | bthledef.h (include BthLEDef.h) |