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