blob: 48f93b7ff38891be850a1653c7d9dc6877e43dda [file] [log] [blame]
// Copyright 2022 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.compat;
protocol Leaf {
GetString() -> (struct {
response string:MAX;
});
};
@transport("Banjo")
@banjo_layout("ddk-protocol")
protocol Parent {
GetString() -> (struct {
response string:MAX;
});
};