blob: 355afa43d3ffc024b629a0abcb56e139d7a542be [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 DEBUG_STREAM_ID_RESERVED uint32 = 0;
@for_deprecated_c_bindings
protocol Device {
/// Sets the device instance stream ID for reading and writing from. The ID must be non-zero.
SetStream(struct {
stream_id uint32;
}) -> (struct {
s zx.status;
});
};