tiny.tldr.LoadedImage
Defined in tiny.tldr.
API (4)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/tldr/src/load.zig:22
zig
pub const LoadedImage = struct { memory: []align(std.heap.page_size_min) u8, entry_address: usize, pub fn deinit(self: *LoadedImage) void { memory.unmap(self.memory); self.* = undefined; } pub fn entry(self: LoadedImage, comptime Function: type) Function { return @ptrFromInt(self.entry_address); }};Source: lib/tldr/src/root.zig:74
zig
pub const LoadedImage = loader.LoadedImage;Audit
| Definitions | 3 |
|---|---|
| Public names | 3 |
| Members | 2 |
| Version | 26.7.0 |
| Revision | daab053ee433 |