Files
loongoffice/cppu/inc/cppu/cppudllapi.h
2011-12-19 10:14:52 +01:00

22 lines
542 B
C

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef INCLUDED_CPPUDLLAPI_H
#define INCLUDED_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_CPPUDLLAPI_H */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */