Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

ExportAddressTableEntry

coff.ExportAddressTableEntry
pub const ExportAddressTableEntry = extern struct

File

lib/std/coff.zig:491

Code

pub const ExportAddressTableEntry = extern struct {
    /// If this address is within the export section, then this is the address of the export
    /// Otherwise, this is the address of a string that specfies a symbol in another DLL:
    ///   <dll name>.<export name>
    ///   <dll name>.#<export ordinal>
    export_or_forwarder_rva: u32,
}