blob: 9b5ed7f0d864d677e481ae8efecd06a49e234852 [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 TypeMappings {
Func0(struct {
bytes vector<byte>;
str string;
}) -> (struct {
status status;
});
Func1(resource struct {
ins vector<handle>;
}) -> (struct {
status status;
});
Func2();
};