blob: 735386a667afde03913778177b6a2c48bc947a4a [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;
alias voidptr = uint64;
@transport("Syscall")
protocol Ovp {
ovp_void_pointer_out(resource struct {
handle handle;
}) -> (struct {
status status;
details voidptr;
});
};