MachObj_reftodatseg

Refer to address that is in the data segment. Input: seg:offset = the address being fixed up val = displacement from start of target segment targetdatum = target segment number (DATA, CDATA or UDATA, etc.) flags = CFoff, CFseg

version(COMPILE)
extern (C++) nothrow
void
MachObj_reftodatseg
(
int seg
,
targ_size_t offset
,
targ_size_t val
,,
int flags
)

Examples

int *abc = &def[3]; to allocate storage: MachObj_reftodatseg(DATA,offset,3 * (int *).sizeof,UDATA);

Suggestion Box / Bug Report