gurba-0.40/
gurba-0.40/bin/
gurba-0.40/lib/
gurba-0.40/lib/cmds/guild/fighter/
gurba-0.40/lib/cmds/monster/
gurba-0.40/lib/cmds/race/catfolk/
gurba-0.40/lib/cmds/race/dwarf/
gurba-0.40/lib/cmds/verb/
gurba-0.40/lib/daemons/data/
gurba-0.40/lib/data/boards/
gurba-0.40/lib/data/messages/
gurba-0.40/lib/data/players/
gurba-0.40/lib/design/
gurba-0.40/lib/domains/gurba/
gurba-0.40/lib/domains/gurba/guilds/fighter/
gurba-0.40/lib/domains/gurba/monsters/
gurba-0.40/lib/domains/gurba/objects/armor/
gurba-0.40/lib/domains/gurba/objects/clothing/
gurba-0.40/lib/domains/gurba/objects/weapons/
gurba-0.40/lib/domains/gurba/vendors/
gurba-0.40/lib/kernel/cmds/admin/
gurba-0.40/lib/kernel/daemons/
gurba-0.40/lib/kernel/include/
gurba-0.40/lib/kernel/lib/
gurba-0.40/lib/kernel/net/
gurba-0.40/lib/kernel/sys/
gurba-0.40/lib/logs/
gurba-0.40/lib/pub/
gurba-0.40/lib/std/modules/languages/
gurba-0.40/lib/std/races/
gurba-0.40/lib/std/races/monsters/
gurba-0.40/lib/wiz/fudge/
gurba-0.40/lib/wiz/spud/
gurba-0.40/src/host/beos/
gurba-0.40/src/host/pc/res/
gurba-0.40/src/kfun/
gurba-0.40/src/lpc/
gurba-0.40/src/parser/
gurba-0.40/tmp/
NAME
	call_other - call a function in an object

SYNOPSIS
	varargs mixed call_other(mixed obj, string function, mixed args...)


DESCRIPTION
	Call a function in an object.  The first argument must be either an
	object or a string.  If it is a string, call_object() will be called
	in the driver object to get the corresponding object.
	Only non-private functions can be called with call_other().  If the
	function is static, the object in which the function is called must
	be the same as the object from which the function is called, or the
	call will fail.
	Any additional arguments to call_other() will be passed on to the
	called function.
	In LPC, obj->func(arg1, arg2, argn) can be used as a shorthand for
	call_other(obj, "func", arg1, arg2, argn).

ERRORS
	An error will result if the first argument is not an object and not a
	string, or if the first argument is a string, but the specified object
	is uncompiled.
	Calling a function that does not exist, or a function that cannot be
	called with call_other() because it is private or static, does not
	result in an error but returns the value 0.
	If the number of existing objects is equal to the value of the
	ST_OTABSIZE field of the array returned by status(), where ST_OTABSIZE
	is defined in the include file <status.h>, attempting to compile a new
	object will crash the system.

SEE ALSO
	kfun/clone_object, kfun/destruct_object, kfun/function_object