blob: a664574346b61e588916dd569e10d3024c66e8d0 [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;
closed protocol Leaf {
strict GetString() -> (struct {
response string:MAX;
});
};
@transport("Banjo")
@banjo_layout("ddk-protocol")
closed protocol Parent {
strict GetString() -> (struct {
response string:MAX;
});
};