/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
__try
{
callVirtualFunction(gpr, stack, sp, (*thisPtr)[slot.index]);
}
__except (msvc_filterCppException(GetExceptionInformation(), *exception,
pProxy->getBridge()->getCpp2Uno()))
{ for (sal_Int32 i = 0; i != count; ++i)
{ if (cppArgs[i] != 0)
{
uno_destructData(cppArgs[i], ptds[i], reinterpret_cast<uno_ReleaseFunc>(css::uno::cpp_release));
TYPELIB_DANGER_RELEASE(ptds[i]);
}
}
TYPELIB_DANGER_RELEASE(aReturnTD); return;
}
*exception = 0; for (sal_Int32 i = 0; i != count; ++i)
{ if (cppArgs[i] != 0)
{ if (parameters[i].bOut)
{ if (parameters[i].bIn)
{
uno_destructData(arguments[i], ptds[i], 0);
}
uno_copyAndConvertData(arguments[i], cppArgs[i], ptds[i],
pProxy->getBridge()->getCpp2Uno());
}
uno_destructData(cppArgs[i], ptds[i], reinterpret_cast<uno_ReleaseFunc>(css::uno::cpp_release));
TYPELIB_DANGER_RELEASE(ptds[i]);
}
}
switch (eRetKind)
{ case RETURN_KIND_REG: switch (aReturnTD->eTypeClass)
{ case typelib_TypeClass_VOID: break; case typelib_TypeClass_BOOLEAN: case typelib_TypeClass_BYTE: case typelib_TypeClass_SHORT: case typelib_TypeClass_UNSIGNED_SHORT: case typelib_TypeClass_LONG: case typelib_TypeClass_UNSIGNED_LONG: case typelib_TypeClass_HYPER: case typelib_TypeClass_UNSIGNED_HYPER: case typelib_TypeClass_CHAR: case typelib_TypeClass_ENUM: case typelib_TypeClass_STRUCT:
std::memcpy(ret, gpr, aReturnTD->nSize); break; case typelib_TypeClass_FLOAT: case typelib_TypeClass_DOUBLE:
std::memcpy(ret, fpr, aReturnTD->nSize); break; default:
assert(false);
} break; case RETURN_KIND_INDIRECT: break;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.