假如一个COM组件的接口函数为GetRect(
[out] long* left, 
[out] long* top, 
[out] long* right, 
[out] long* bottom),
用来获取一个矩形.已知的方法是一个替代方法是,将函数改为GetRect([out, retval] VARIANT* rect).
不过这种方法实现起来比较麻烦.现在想问:在Javascript中能不能接收"多个"传出参数?如果可以,怎样实现?(以上面例子为例)