System.Bluetooth.TBluetoothUUID

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TBluetoothUUID = TGUID;

C++

typedef GUID TBluetoothUUID;

プロパティ

種類 可視性 ソース ユニット
record
typedef
public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth System.Bluetooth


説明

Bluetooth サービス汎用一意識別子です。

この識別子は、文字列リテラルを角かっこで囲んで表されます。UUID の形式は "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}" でなければなりません。ここで、各 x は 16 進数字(09AF)です。たとえば、"{00000000-0000-1000-8000-00805F9B34FA}" などです。

TBluetoothUUID では、UUID に次のような構造でアクセスできます。

  • 最初の 8 桁の 16 進数は D1 に対応します。
  • 次の 4 桁の 16 進数は D2 に対応します。
  • 次の 4 桁の 16 進数は D3 に対応します。
  • 次の 4 桁の 16 進数は D4 の最初の 2 バイトに対応します。
  • 最後の 12 桁の 16 進数は D4 の残りの 6 バイトに対応します。

関連項目

  • UUID(ウィキペディア)