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.

WindowsExtension

File name extensions supported natively by CreateProcess() on Windows.

process.WindowsExtension
pub const WindowsExtension = enum

File

lib/std/process.zig:318

Code

pub const WindowsExtension = enum {
    bat,
    cmd,
    com,
    exe,

    /// Length of the longest supported extension (in ASCII characters)
    pub const max_len = 3;
}