TypeBinding b = bind(g,comp,null);
if(b!=null && b.nativeType.byRef()!=null )
return b.createByRef();
}
ISafeArrayType at = t.queryInterface(ISafeArrayType.class);
if(at!=null) {
// T=SAFEARRAY(...)
IType comp = at.getComponentType();
IPrimitiveType compPrim = comp.queryInterface(IPrimitiveType.class);
if( compPrim!=null ) {
TypeBinding r = primitiveTypeBindings.get(compPrim.getVarType());
if(r!=null) {