blob: 892da3c2dfc0d30fd3f1f966bef969dced7558ec [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.bluetooth;
/// Represents a Bluetooth UUID in its 128-bit canonical form. While the Bluetooth standard supports
/// 16- and 32-bit short form UUIDs over the wire, the Fuchsia FIDL libraries require all UUIDs to
/// be represented in their canonical 128-bit form.
[MaxHandles = "0"]
struct Uuid {
array<uint8>:16 value;
};