estructura BTH_LE_UUID (bthledef.h)
La estructura BTH_LE_UUID contiene información sobre un identificador único universal (UUID) de Bluetooth Low Energy (LE).
Sintaxis
typedef struct _BTH_LE_UUID {
BOOLEAN IsShortUuid;
union {
USHORT ShortUuid;
GUID LongUuid;
} Value;
} BTH_LE_UUID, *PBTH_LE_UUID;
Miembros
IsShortUuid
Indica si el UUID de baja energía (LE) es un valor abreviado de 16 bits o si es el valor de 128 bits largo.
Value
Valor del UUID.
Value.ShortUuid
Valor corto de 16 bits del UUID. Este miembro solo se aplica si IsShortUuid es TRUE.
Value.LongUuid
Valor largo de 128 bits del UUID. Este miembro solo se aplica si IsShortUuid es FALSE.
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible | Versiones:_Supported en Windows 8 |
Encabezado | bthledef.h (incluya BthLEDef.h) |