(C) 1998 AROS - The Amiga Research OS


NAME
#include <proto/dos.h>

BOOL AssignLate (name , path)

LOCATION
In DOSBase at offset 103

SYNOPSIS
STRPTR name
STRPTR path

FUNCTION
Create an assign for the given name, which will be resolved upon the first reference to it. If this succeeds (i.e. the path exists and can be locked) it will be turned into an AssignLock() type assign. This way you can create assigns to unmounted volumes which will only be requested when accessed.

INPUTS
name
NULL terminated name of the assign.
path
NULL terminated path to be resolved on the first reference.

RESULT
!=0 success, 0 on failure. IoErr() gives additional information in that case.

EXAMPLE

SEE ALSO
Lock(), AssignAdd(), AssignPath(), AssignLock()

NOTES

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
10.11.1997 turrican
Use DOSTRUE and DOSFALSE defines
05.11.1997 turrican
Documentation added
31.10.1997 turrican
Initial implementation
27.01.1997 ldp
Polish
09.12.1996 aros
Added empty templates for all missing functions

Moved #include's into first column