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.

ExportDirectoryTable

coff.ExportDirectoryTable
pub const ExportDirectoryTable = extern struct

File

lib/std/coff.zig:463

Code

pub const ExportDirectoryTable = extern struct {
    /// Reserved
    flags: u32,

    /// Creation time of this table
    time_date_stamp: u32,

    major_version: u16,
    minor_version: u16,

    /// The address of an ASCII string that contains the name of the DLL.
    /// This address is relative to the image base.
    name_rva: u32,

    /// The ordinal of the first export in this image
    ordinal_base: u32,

    /// Number of entries in the export address table
    number_of_entries: u32,

    /// Number of entries in the name pointer table and ordinal table
    number_of_names: u32,

    export_address_table_rva: u32,
    name_pointer_table_rva: u32,
    ordinal_table_rva: u32,
}