2010-10-14 08:30:07 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-13 14:17:57 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2013-10-23 19:17:00 +02:00
|
|
|
#ifndef INCLUDED_CPPU_MACROS_HXX
|
|
|
|
#define INCLUDED_CPPU_MACROS_HXX
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-10-29 14:25:29 +00:00
|
|
|
#include <sal/types.h>
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2013-12-16 16:46:48 +01:00
|
|
|
/** Namespace name for compiler/ platform, e.g. gcc3, msci
|
|
|
|
|
|
|
|
@deprecated implementation detail, not to be used by client code
|
|
|
|
*/
|
2001-10-26 06:42:42 +00:00
|
|
|
#define CPPU_CURRENT_NAMESPACE CPPU_ENV
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2012-01-05 19:40:38 +01:00
|
|
|
/// @cond INTERNAL
|
|
|
|
|
2004-06-04 02:18:31 +00:00
|
|
|
/** Patching the GCC 3 incomatible alignment change for Linux.
|
|
|
|
|
|
|
|
This macro is appended by cppumaker to every first member of a struct, if
|
|
|
|
the struct inherits from a base struct and the first member is neither
|
|
|
|
double nor sal_[u]Int64. (The double/sal_[u]Int64 restriction is due to a
|
|
|
|
bug in GCC prior to version 3.3, which would cause __alignof__ of such a
|
|
|
|
struct to become 8 instead of 4 if CPPU_GCC3_ALIGN were added to its first
|
|
|
|
member.)
|
2001-10-26 06:42:42 +00:00
|
|
|
*/
|
2012-02-14 14:14:38 +00:00
|
|
|
#if defined(__GNUC__)
|
2001-10-19 12:04:06 +00:00
|
|
|
#define CPPU_GCC3_ALIGN( base_struct ) __attribute__ ((aligned (__alignof__ (base_struct))))
|
2001-10-16 10:11:46 +00:00
|
|
|
#else
|
2001-10-19 12:04:06 +00:00
|
|
|
#define CPPU_GCC3_ALIGN( base_struct )
|
2001-10-16 10:11:46 +00:00
|
|
|
#endif
|
|
|
|
|
2004-10-22 09:58:53 +00:00
|
|
|
/**
|
|
|
|
Exporting the symbols necessary for exception handling on GCC.
|
|
|
|
|
|
|
|
These macros are used in the headers generated by cppumaker for UNO exception
|
|
|
|
types, to ensure that exception handling does not fail on GCC.
|
|
|
|
*/
|
2008-12-30 13:32:01 +00:00
|
|
|
#define CPPU_GCC_DLLPUBLIC_EXPORT SAL_EXCEPTION_DLLPUBLIC_EXPORT
|
|
|
|
#define CPPU_GCC_DLLPRIVATE SAL_EXCEPTION_DLLPRIVATE
|
2004-10-22 09:58:53 +00:00
|
|
|
|
2012-01-05 19:40:38 +01:00
|
|
|
/// @endcond
|
|
|
|
|
2013-10-23 19:17:00 +02:00
|
|
|
#endif // INCLUDED_CPPU_MACROS_HXX
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2010-10-14 08:30:07 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|