object = AllocNamedObjectA(name, tagList);
D0 A0 A1
struct NamedObject *AllocNamedObjectA(STRPTR, struct TagItem *);
object = AllocNamedObject(name, Tag1, ...);
struct NamedObject *AllocNamedObject(STRPTR, ULONG, ...);
Allocates a NamedObject and initializes it as needed to the name given. This object can then be used as an object in the namespaces. Tags can be given to make an object contain a namespace such that nested namespaces can be built. When the object is allocated, it automatically has one use. If you later wish to release this object such that others may remove it from the namespace you must do a
ReleaseNamedObject().