blob: 755ba95e8069411cd8ad7fd274825c8f60b8d63a [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.hardware.usb.virtual.bus;
using zx;
[Layout = "Simple"]
protocol Bus {
// Enables the virtual bus.
Enable() -> (zx.status s);
// Disables the virtual bus.
Disable() -> (zx.status s);
// Simulates a USB connected event.
Connect() -> (zx.status s);
// Simulates a USB connected event.
Disconnect() -> (zx.status s);
};