UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Functions Enumerations
DtccApi.h
1 
2 /******************************************************************************
3 * Filename : DtccApi.h
4 * Classification : UNCLASSIFIED
5 ******************************************************************************/
6 
7 #ifndef _MSP_DTCC_API_H
8 #define _MSP_DTCC_API_H
9 
10 //-----------------------------------------------------------------------------------
11 // System Includes
12 //-----------------------------------------------------------------------------------
13 
14 //-----------------------------------------------------------------------------------
15 // Local Includes
16 //-----------------------------------------------------------------------------------
17 
18 //-----------------------------------------------------------------------------------
19 // Local Structures
20 //-----------------------------------------------------------------------------------
21 
22 //-----------------------------------------------------------------------------------
23 // Enumerated Types
24 //-----------------------------------------------------------------------------------
25 
26 //-----------------------------------------------------------------------------------
27 // Local Defines
28 //-----------------------------------------------------------------------------------
29 
30 #if defined(WIN32)
31 # if defined(_USRDLL)
32 # if defined(MSP_CCS_EX)
33 # define MSP_DTCC_API __declspec(dllexport)
34 # define MSP_DTCC_TEMPLATE_EXPORT
35 # else
36 # define MSP_DTCC_API __declspec(dllimport)
37 # define MSP_DTCC_TEMPLATE_EXPORT extern
38 # endif
39 # else
40 # define MSP_DTCC_API
41 # define MSP_DTCC_TEMPLATE_EXPORT
42 # endif
43 #else
44 # define MSP_DTCC_API
45 #endif
46 
47 //-----------------------------------------------------------------------------------
48 // Function Prototypes
49 //-----------------------------------------------------------------------------------
50 
51 //-----------------------------------------------------------------------------------
52 // End of File
53 //-----------------------------------------------------------------------------------
54 
55 #endif // _MSP_DTCC_API_H