Files
libreoffice/include/jvmfwk/jvmfwkdllapi.h
Stephan Bergmann 0ef36a8d63 Remove unused JVMFWK_DLLPRIVATE
Change-Id: I9b562e085e0b2a446a16ff5189c1d6b03c0d924b
2014-10-09 18:09:40 +02:00

24 lines
654 B
C

/* -*- 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/.
*/
#ifndef INCLUDED_JVMFWK_JVMFWKDLLAPI_H
#define INCLUDED_JVMFWK_JVMFWKDLLAPI_H
#include <sal/types.h>
#if defined JVMFWK_DLLIMPLEMENTATION
# define JVMFWK_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
# define JVMFWK_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */