ArcGIS Procedural Runtime  3.2.10650
prt.h
1 /*
2  COPYRIGHT (c) 2012-2024 Esri R&D Center Zurich
3  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
4  Unpublished material - all rights reserved under the
5  Copyright Laws of the United States and applicable international
6  laws, treaties, and conventions.
7 
8  For additional information, contact:
9  Environmental Systems Research Institute, Inc.
10  Attn: Contracts and Legal Services Department
11  380 New York Street
12  Redlands, California, 92373
13  USA
14 
15  email: contracts@esri.com
16 */
17 
18 #ifndef PRT_H_
19 #define PRT_H_
20 
21 #ifdef _WIN32
22 # ifdef PRT_EXPORTS
23 # define PRT_EXPORTS_API __declspec(dllexport)
24 # else
25 # define PRT_EXPORTS_API __declspec(dllimport)
26 # endif
27 #else
28 # define PRT_EXPORTS_API __attribute__ ((visibility ("default")))
29 #endif
30 
31 
141 #endif /* PRT_H_ */