blob: 2f78b16bfb8709f33b88d38481168b05656afdab [file] [log] [blame] [edit]
// Copyright 2021 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.board.test;
type Entry = struct {
name string:MAX;
metadata vector<uint8>:MAX;
vid uint32;
pid uint32;
did uint32;
};
protocol Board {
CreateDevice(struct {
entry Entry;
}) -> ();
};