示例#1
0
void c_to_factor_toplevel(CELL quot)
{
	if(!AddVectoredExceptionHandler(0, (void*)exception_handler))
		fatal_error("AddVectoredExceptionHandler failed", 0);
	c_to_factor(quot);
	RemoveVectoredExceptionHandler((void*)exception_handler);
}
示例#2
0
void factorvm::c_to_factor_toplevel(cell quot)
{
	c_to_factor(quot,this);
}
示例#3
0
void c_to_factor_toplevel(cell quot)
{
	c_to_factor(quot,vm);
}
示例#4
0
void c_to_factor_toplevel(CELL quot)
{
	c_to_factor(quot);
}
示例#5
0
void factor_vm::c_to_factor_toplevel(cell quot) { c_to_factor(quot); }