
	compile_object(4)	MudOS v21c2		(5 Sep 1994)

	名称:
		compile_object - 提供虚拟物件 (virtual object) 功能的
				 mudlib  介面
	语法:
		object compile_object( string pathname );

		物件 compile_object( 字串 pathname );
	用法:
		当 mudlib 指示驱动程式载入一个不存在於记忆体中的档案,
		驱动程式会呼叫 compile_object().  举例来说, 如果
		mudlib  呼叫 call_other("/obj/file.r", "some_function")
		或 new("/obj/file.r") 时, 驱动程式就呼叫主宰物件
		 (master.c) 中的 compile_object("/obj/file.r").
		而 /obj/file.r  为不存在於记忆体的档案名称. 如果
		mudlib  不希望连结 (associate)  名为 /obj/file.r  
		的档案, compile_object()  将传回 0. 如果 mudlib 愿意, 
		就要传回 /obj/file.r  这个物件. 在 compile_object()
		连结一个档案名称和物件之後, 对驱动程式而言, 就如同
		file.r.c  这个档案存在於游戏中. 载入并产生此物件时,
		就是 compile_object() 传回的物件.
	翻译:
		Spock @ FF	97.Aug.6.		(printed 3/16/95)
