Home  /  Autodocs  /  dos.library

NAME

AssignAdd
Adds a Lock to an assign for multi-directory assigns (V36)

SYNOPSIS

success = AssignAdd(name,lock)
D0 D1 D2

BOOL AssignAdd(STRPTR,BPTR)

FUNCTION

Adds a Lock to an assign, making or adding to a multi-directory assign. Note that this only will succeed on an assign created with AssignLock(), or an assign created with AssignLate() which has been resolved (converted into a AssignLock()-assign).

NOTE:
you should not use the Lock in any way after making this call

successfully. It becomes the part of the assign, and will be unlocked by the system when the assign is removed. If you need to keep the Lock, pass a Lock from DupLock() to AssignLock().

INPUTS

name
Name of device to assign Lock to (without trailing ':')

lock
Lock associated with the assigned name

RESULT

success
Success/failure indicator. On failure, the Lock is not unlocked.

NOTES

Assign names may not be longer than 30 characters.

SEE ALSO

Lock(), AssignLock(), AssignPath(), AssignLate(), DupLock(), RemAssignList()