1// Copyright 2018 The Fuchsia Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5library fuchsia.usb.debug; 6 7using zx; 8 9const uint32 DEBUG_STREAM_ID_RESERVED = 0; 10 11[Layout = "Simple"] 12interface Device { 13 /// Sets the device instance stream ID for reading and writing from. The ID must be non-zero. 14 1: SetStream(uint32 stream_id) -> (zx.status s); 15}; 16