blob: 7e332c17a874b5610871458956feb112c72b189c [file] [log] [blame]
// Copyright 2019 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.buttons;
using zx;
[Transport = "Banjo", BanjoLayout = "ddk-protocol"]
protocol Buttons {
/// Gets a channel for FIDL protocol.
/// |chan| : Channel for FIDL protocol.
/// @Returns: |status| : ZX_OK if succeeds.
GetChannel(zx.handle:CHANNEL chan) -> (zx.status status);
};