hv1_structs/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Data structures that may be useful when working with hv1_hypercall.
5
6#![forbid(unsafe_code)]
7
8mod proc_mask;
9mod vtl_array;
10
11pub use proc_mask::*;
12pub use vtl_array::*;