blob: a30eaa92cf16c02f7fac9cc5d8b7aee123c02f5c [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.virtualbus;
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);
};