blob: 18d4a347ae2db2422f172b50e0d6ffc4f35234cb [file] [log] [blame]
// Copyright 2018 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.usb.debug;
using zx;
const uint32 DEBUG_STREAM_ID_RESERVED = 0;
[Layout = "Simple"]
protocol Device {
/// Sets the device instance stream ID for reading and writing from. The ID must be non-zero.
SetStream(uint32 stream_id) -> (zx.status s);
};