1// Copyright 2017 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5library fuchsia.mem;
6
7struct Buffer {
8    // The vmo.
9    handle<vmo> vmo;
10
11    // The size of the data in the vmo. This size must be smaller than the
12    // physical size of the vmo.
13    uint64 size;
14};
15