Home  /  Autodocs  /  dos.library

NAME

AddSegment
Adds a resident segment to the resident list (V36)

SYNOPSIS

success = AddSegment(name, seglist, type)
D0 D1 D2 D3

BOOL AddSegment(STRPTR, BPTR, LONG)

FUNCTION

Adds a Segment to the DOS resident list, with the specified Seglist and type (stored in Segment->seg_UC - normally 0). NOTE: currently unused types may cause it to interpret other registers (D4-?) as additional parameters in the future.

The Segment structure is defined in <dos/dos.h>. Do NOT build Segment structures yourself!

INPUTS

name
name for the segment

seglist
DOS seglist of code for segment

type
initial usecount, normally 0

RESULT

success
success or failure

SEE ALSO

FindSegment(), RemSegment(), LoadSeg(), <dos/dos.h>