189abcf0db
Change these back to consistently use the "..." form to include other UNO API include files, for the benefit of external users of this API. Change-Id: I9c9188e895eb3495e20a71ad44abfa2f6061fa94
21 lines
554 B
C
21 lines
554 B
C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
#ifndef INCLUDED_CPPU_CPPUDLLAPI_H
|
|
#define INCLUDED_CPPU_CPPUDLLAPI_H
|
|
|
|
#include "sal/types.h"
|
|
|
|
#if defined(CPPU_DLLIMPLEMENTATION)
|
|
#define CPPU_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
|
|
#else
|
|
#define CPPU_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
|
|
#endif
|
|
|
|
#if defined(PURPENV_DLLIMPLEMENTATION)
|
|
#define PURPENV_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
|
|
#else
|
|
#define PURPENV_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
|
|
#endif
|
|
|
|
#endif // INCLUDED_CPPU_CPPUDLLAPI_H
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|