blob: ddaec29df43aae93107a6ba53e51a25eccb91ba1 [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 ddk.protocol.buttons;
using zx;
[Layout = "ddk-protocol"]
protocol Buttons {
/// Gets a channel for FIDL protocol.
/// |chan| : Channel for FIDL protocol.
/// @Returns: |status| : ZX_OK if succeeds.
GetChannel(handle<channel> chan) -> (zx.status status);
};