blob: 08b0ef3259b369d5e91af38e3eea83f47d32db54 (
plain)
1
2
3
4
5
6
7
8
9
|
//! Hikari EFI Services
pub const boot = @import("boot.zig");
pub const runtime = @import("runtime.zig");
pub const system = @import("system.zig");
pub const BootServices = boot.BootServices;
pub const RuntimeServices = runtime.RuntimeServices;
pub const SystemTable = system.SystemTable;
|