yangyin
2024-08-20 98e49c0dd42840a094837f7acae532bc237a719a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
#ifndef EXPORT_OUT_API_H
#define EXPORT_OUT_API_H
 
#ifdef SHARED_EXPORTS_BUILT_AS_STATIC
#  define EXPORT_OUT_API
#  define EPANET_OUTPUT_NO_EXPORT
#else
#  ifndef EXPORT_OUT_API
#    ifdef epanet_output_EXPORTS
        /* We are building this library */
#      define EXPORT_OUT_API __declspec(dllexport)
#    else
        /* We are using this library */
#      define EXPORT_OUT_API __declspec(dllimport)
#    endif
#  endif
 
#  ifndef EPANET_OUTPUT_NO_EXPORT
#    define EPANET_OUTPUT_NO_EXPORT 
#  endif
#endif
 
#ifndef EPANET_OUTPUT_DEPRECATED
#  define EPANET_OUTPUT_DEPRECATED __declspec(deprecated)
#endif
 
#ifndef EPANET_OUTPUT_DEPRECATED_EXPORT
#  define EPANET_OUTPUT_DEPRECATED_EXPORT EXPORT_OUT_API EPANET_OUTPUT_DEPRECATED
#endif
 
#ifndef EPANET_OUTPUT_DEPRECATED_NO_EXPORT
#  define EPANET_OUTPUT_DEPRECATED_NO_EXPORT EPANET_OUTPUT_NO_EXPORT EPANET_OUTPUT_DEPRECATED
#endif
 
#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef EPANET_OUTPUT_NO_DEPRECATED
#    define EPANET_OUTPUT_NO_DEPRECATED
#  endif
#endif
 
#endif /* EXPORT_OUT_API_H */