xref: /trunk/main/sc/inc/scdllapi.h (revision feb022d5)
1*feb022d5SAndrew Rist /**************************************************************
2*feb022d5SAndrew Rist  *
3*feb022d5SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*feb022d5SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*feb022d5SAndrew Rist  * distributed with this work for additional information
6*feb022d5SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*feb022d5SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*feb022d5SAndrew Rist  * "License"); you may not use this file except in compliance
9*feb022d5SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*feb022d5SAndrew Rist  *
11*feb022d5SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*feb022d5SAndrew Rist  *
13*feb022d5SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*feb022d5SAndrew Rist  * software distributed under the License is distributed on an
15*feb022d5SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*feb022d5SAndrew Rist  * KIND, either express or implied.  See the License for the
17*feb022d5SAndrew Rist  * specific language governing permissions and limitations
18*feb022d5SAndrew Rist  * under the License.
19*feb022d5SAndrew Rist  *
20*feb022d5SAndrew Rist  *************************************************************/
21*feb022d5SAndrew Rist 
22cdf0e10cSrcweir #ifndef INCLUDED_SCDLLAPI_H
23cdf0e10cSrcweir #define INCLUDED_SCDLLAPI_H
24cdf0e10cSrcweir 
25cdf0e10cSrcweir #include "sal/types.h"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #if defined(SC_DLLIMPLEMENTATION)
28cdf0e10cSrcweir #define SC_DLLPUBLIC  SAL_DLLPUBLIC_EXPORT
29cdf0e10cSrcweir #else
30cdf0e10cSrcweir #define SC_DLLPUBLIC  SAL_DLLPUBLIC_IMPORT
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir #define SC_DLLPRIVATE SAL_DLLPRIVATE
33cdf0e10cSrcweir 
34cdf0e10cSrcweir #endif /* INCLUDED_SCDLLAPI_H */
35