blob: 337e69584e8a04c7c50fef705a924694cc458782 [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 zircon.device.usb_device;
[repr="C"]
enum UsbMode : uint32 {
NONE = 0;
HOST = 1;
DEVICE = 2;
OTG = 3;
};