office-gobmx/include/cppu/cppudllapi.h
Stephan Bergmann 189abcf0db loplugin:includeform: UNO API include files
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
2017-10-23 22:22:50 +02:00

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: */