blob: c967c08ce6b43ecb70f6c24cd90f9779b2b78a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef INCLUDED_SWDDLLAPI_H
#define INCLUDED_SWDDLLAPI_H
#include "sal/types.h"
#if defined(SWD_DLLIMPLEMENTATION)
#define SWD_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
#define SWD_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
#define SWD_DLLPRIVATE SAL_DLLPRIVATE
#endif /* INCLUDED_SWDDLLAPI_H */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|