blob: c66efd946a2935db84c23598c9ab099a13814409 [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 zx;
@transport("Syscall")
protocol Couple {
/// This does a single thing.
@internal
DoThing(struct {
an_input int32;
}) -> (struct {
status status;
});
/// Does great stuff.
GetStuff(struct {
an_input int32;
input2 int32;
}) -> (struct {
status status;
});
};