extern struct dylinker_command [src]
A program that uses a dynamic linker contains a dylinker_command to identify
the name of the dynamic linker (LC_LOAD_DYLINKER). And a dynamic linker
contains a dylinker_command to identify the dynamic linker (LC_ID_DYLINKER).
A file can have at most one of these.
This struct is also used for the LC_DYLD_ENVIRONMENT load command and contains
string for dyld to treat like an environment variable.
Fields
cmd: LCLC_ID_DYLINKER, LC_LOAD_DYLINKER, or LC_DYLD_ENVIRONMENT
cmdsize: u32includes pathname string
name: u32A variable length string in a load command is represented by an lc_str
union. The strings are stored just after the load command structure and
the offset is from the start of the load command structure. The size
of the string is reflected in the cmdsize field of the load command.
Once again any padded bytes to bring the cmdsize field to a multiple
of 4 bytes must be zero.
Source
pub const dylinker_command = extern struct {
/// LC_ID_DYLINKER, LC_LOAD_DYLINKER, or LC_DYLD_ENVIRONMENT
cmd: LC,
/// includes pathname string
cmdsize: u32,
/// A variable length string in a load command is represented by an lc_str
/// union. The strings are stored just after the load command structure and
/// the offset is from the start of the load command structure. The size
/// of the string is reflected in the cmdsize field of the load command.
/// Once again any padded bytes to bring the cmdsize field to a multiple
/// of 4 bytes must be zero.
name: u32,
}